PureBytes Links
Trading Reference Links
|
I think this is the one your looking for.
Var: Swing(0);
Value1=Average(H,3);
Value2=Average(L,3);
If C<Value2[1] And C[1]>=Value2[2] then Swing=-1;
If C>Value1[1] And C[1]<=Value1[2] then Swing=1;
If Swing=1 Then Plot1(Value2,"Sell Act");
If Swing=-1 Then Plot2(Value1,"Buy Act");
The darkest hour in any man's life is when he sits down to plan
how to get money without earning it.
Sentinel Trading
|