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

Re: Slow Stochastic moving buy-sell levels



PureBytes Links

Trading Reference Links

Dimitri,

Have you test a calculation of dynamic level with the previous values 
of peak and trough? ( example below)

stephane

MaxGraph=9;
Graph0=StochK(5);
Graph0Style=1;
Graph0Color=2;

Buy=Cross( MACD(), Signal() );
Sell = Cross( Signal(), MACD() );

Stosell= IIf(StochK(5)>60,StochK(5),60);
Graph1= (Peak(Stosell,1,1) + Peak(Stosell,1,2)+ Peak(Stosell,1,3))/3;
Graph1Style=1;
Graph1Color=3;
Stobuy= IIf(StochK(5)<40,StochK(5),40);
Graph2= (Trough(Stobuy,1,1) + Trough(Stobuy,1,2)+ Trough
(Stobuy,1,3))/3;
Graph2Style=1;
Graph2Color=5;