[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: hello from a newbie



PureBytes Links

Trading Reference Links

Maurice,
The Bollinger Band oscillator equation as listed by Steve is also a great
start for further modification and experimentation.
Sometimes when I need some further damping of the signal without inducing
too much lag, I use (or a variant of):

V1:=Input("Std. Dev. periods",2,250,20);
V2:=Input("Mov periods",2,250,20);
V3:=Input("LinReg periods",2,50,5);
V4:=Input("Upper Threshold",-100,100,70);
V5:=Input("Lower Threshold",-100,100,35);
V6:=LinearReg(C,V3);
V4;V5;
((V6+2*Std(V6,V1)-Mov(V6,V2,S))/(4*Std(V6,V1)))*100;

Experiment away...
-Corey Saxe