PureBytes Links
Trading Reference Links
|
Begin at 5119, 5120 and then at 5161 messages of this list.
DT
--- In amibroker@xxxx, Anthony Faragasso <ajf1111@xxxx> wrote:
> Hi Dimitri;
>
> Could you explain how you arrived at the Dbuy and Dsell numbers in
your
> formula.Were they produced by doing some optimization, if so, could
you
> supply the optimization.
>
>
> /*Slow Stochastic moving buy-sell levels*/
>
> Dbuy=14;
> Dsell=8;
> X1=13;
> MaxGraph=12;
> ST3=StochK(X1);
> ST33=StochD(X1);
> Graph0=ST3;
> Graph1=ST33;
> AVST=MA(StochD(X1),100);
> Graph9=AVST-Dbuy;Graph10=AVST+Dsell;
> Graph8=avst;Graph8Style=8;Graph8BarColor=2;
> Graph9Style=Graph10Style=8;
> Graph9BarColor=Graph10BarColor=1;
>
> Thank you.
> Anthony
|