PureBytes Links
Trading Reference Links
|
Hi Jennifer,
If you would like to buy on the open of the next bar + x points, aka Larry
Williams, try code like the following;
If Close > Average(Close, 15) then Begin
Buy Open Next Bar + Average(Range, 3) Stop;
End;
If Close < Average(Close, 15) then Begin
Sell Open Next Bar - Average(Range, 3) Stop;
End;
Hope this helps.
Jody.
|