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
Excellent. Many thanks. PV seems to be OK.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....