Se vuoi aggiungere per l’operatività long e short questi intervalli temporali basta che crei la condizione.
Esempio:
startTimeLong = 70000
endTimeLong = 220000
startTimeShort = 70000
endTimeShort = 180000
cTimeLong = time >= startTimeLong and time <= endTimeLong // da aggiungere alle condizioni long
cTimeShort = time >= startTimeShort and time <= endTimeShort // da aggiungere alle condizioni short
Se vuoi uscire temporalmente in certi orari precisi (magari diversi da quelli sopra indicati) aggiungi :
exitLongTime = xxx
exitShortTime = yyy
if time = exitLongTime then
sell at market
endif
if time = exitShortTime then
exitShort at market
endif