Ciao a tutti, volevo creare un sistema semplice che lavorasse sugli eccessi. In Particolare partendo dalla chiusura daily le aree di intervento sarebbero la chiusura +/- valore dell’ATR a 5 periodi. Una volta verificata questa condizione l’entry è data dal crosses under/over del supertrend a 3 minuti. Io ho prodotto il seguente codice che però sembra ignorare le indicazioni che gli do rispetto al daily. Dove sbaglio? Grazie in anticipo per il supporto.
defparam FLATBEFORE = 080000
defparam FLATAFTER = 215900
defparam CUMULATEORDERS=false
TIMEFRAME (DAILY, UPDATEONCLOSE)
Range1=Close[0]+Averagetruerange [5] (close)
Range2=Close[0]-Averagetruerange [5] (close)
ENTRY=Range1 or Range2
TIMEFRAME(3mn, Updateonclose)
ST=Supertrend [3.5,10]
If close crosses over ST and ENTRY then
buy contract at market
elsif close crossees under ST and ENTRY then
sellshort contract at market
endif
SET TARGET PPROFIT 50
SET TARGET PLOSS 50