PureBytes Links
Trading Reference Links
|
Dave,
Here's the formula to create Chande's Vidya Bands for MS 6.5.
If that's not what you're looking for let me know.
Length:=Input("Length",1,200,21);
Smooth:=Input("Smoothing",1,200,5);
AbsCMO:=(Abs(CMO(C,Length)))/100;
SC:=2/(Smooth+1);
VIDYA:=If(Cum(1)<=(Length+1),C,(SC*AbsCMO*CLOSE)+(1-(SC*AbsCMO))*PREV);
upperband:=1.01*VIDYA;
lowerband:=.99*VIDYA;
VIDYA;
upperband;
lowerband;
Claud
|