I am looking for some advise on how to fully automate a strategy I use in a discretionary way. The rules are simple. I enter short each time the open is above the previous close and the market does a new high, so basically the condition to go short are:
if( Open[0] < Close[1] && Low[0] < Low1])
Can anybody advise on how to code this? I've been trying but with limited success
Thanks,

Comment