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

[no subject]



PureBytes Links

Trading Reference Links

Hi,

Do you know the reason why I can't visualize the applystop on a chart
is it only for backtesting ?
but if I can't control the stop on the chart, I am not happy.

/\/\
____

Stephane


/********basic System****************/

Buy=Cross(C,MA(C,20));
Sell= Cross(MA(C,30),C) ; 
Sas=ApplyStop( 0, 2, 10,1 );

/****************Graph****************/
Graph0=C; 
Graph0Style=64; 
Graph0BarColor = IIf( Buy, 6, IIf(Sell , 4 , 1 ));

Graph4=Sas;
Graph4Color=8; 
Graph4Style=1;