PureBytes Links
Trading Reference Links
|
Tomacz,
Applystop is certainly a powerfull tool, but why you don't allow us to
visualize the level of an applystop on a chart
stephane
Buy= Cross(C,MA(C,20));
Sell= Cross(MA(C,20),C);
ApplyStop(2,2,2*ATR(10),1);
Graph0=C;
Graph0Color=1;
Graph0Style=64;
Graph1= ApplyStop(2,2,2*ATR(10),1);
Graph1Color=6;
Graph1Style=1;
|