Software Used to Trade Jack Hershey Methods

Quote from Neoxx:

I mean actually disabling the text comments. I only use the InfoBox for the range and volume ratio information.

Yes, go through the code and remove the text you don't want.
 
Quote from palinuro:

In cleaning up the DOM code for export I inadvertently deleted the line that correctly sets the visual aids, so I am uploading a corrected version.

Thanks to breakeven for pointing out the problem.

I've taken advantage of the opportunity to add an optional adjustable inside Wall alert, so there is some compensation for the inconvenience.

- palinuro


Is there a DOM version with the total Bid vs Total Ask Ratio?
 
The Fundamental Filter for Equities Data should have a fix in place this evening. Someone changed the data presentation a few weeks back causing errors in the filtering process. As of tonight's data update, rendering should return to the original format, and as a result, correct all current equities data issues.

HTH

- Spydertrader
 
I liked the rising markers over the Volume bars on Spyder's charts, so I wrote a tiny Ninjatrader indicator to do the same.

I was wondering if some-one would check the logic on the Peak Volume -- it pops up fairly frequently... Should it also be filtered by the P Vol bar > some average Volume?


if ( ( Slope(Volume,1,0) > Slope(Volume,2,1) ) &&
( Slope(Volume,1,0)>0 && Slope(Volume,2,1)>0 ) ) // and are both positive (rising)


then draw the 'P' text....
 

Attachments

BTW the rising marker is in the Wingding 3 font which I believe comes with the OS... It is a truetype font -- on windows, check the C:\WINDOWS\Fonts directory
 

Attachments

Quote from LostTrader:

I liked the rising markers over the Volume bars on Spyder's charts, so I wrote a tiny Ninjatrader indicator to do the same.

That's great. I've been looking for something along those lines for weeks! Thanks.
 
Quote from LostTrader:

I liked the rising markers over the Volume bars on Spyder's charts, so I wrote a tiny Ninjatrader indicator to do the same.

I was wondering if some-one would check the logic on the Peak Volume -- it pops up fairly frequently... Should it also be filtered by the P Vol bar > some average Volume?


if ( ( Slope(Volume,1,0) > Slope(Volume,2,1) ) &&
( Slope(Volume,1,0)>0 && Slope(Volume,2,1)>0 ) ) // and are both positive (rising)


then draw the 'P' text....
Excellent. Many thanks. PV seems to be OK.
 
Back
Top