Forums › ProRealTime forum Italiano › Supporto ProOrder › Orario di chiusura custom › Reply To: Orario di chiusura custom
07/30/2019 at 3:33 PM
#103814
A me questo apre le operazioni correttamente (in base alla chiusura e alla media che ho indicato) sul DAX a 5 minuti:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Once close22 = 0 If time = 220000 Then If close < close22 Then CondizioneLong = 1 else CondizioneLong = 0 Endif close22 = close Endif If time >= 110000 and time <= 130000 and CondizioneLong AND close > Average[100] then buy at market set stop ploss 200 set target pprofit 120 endif If time = 214500 then sell at market endif graph close22 graph close graph time |