Strategia multitimeframe con ATR

Forums ProRealTime forum Italiano Supporto ProOrder Strategia multitimeframe con ATR

Viewing 2 posts - 1 through 2 (of 2 total)
  • #185349

    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

     

    #185485

    La riga ENTRY=Range1 or Range2 è errata, in quanto assegna un prezzo alle variabili, quindi saranno sempre VERE da un punto di vista logico.
    Prova questa:

Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login