After reread the PDF, I should add another rule when placing an order:
Quote:
Originally Posted by valasindo
...
To place LONG order (following the rules above)
when previous bar (of current, running bar) low is lower than the bar before the previous bar. Put your order when the close of current bar is higher than previous close. In MT4 platform the syntax would be like this: Low[1]<Low[2] && Close[0]>Close[1]
To place SHORT order
when previous bar high is higher than the bar before previous bar. Put your order when current close is lower than previous close. High[1]>High[2] && Close[0]<Close[1]
...
|