aiuto stop loss

Viewing 7 posts - 1 through 7 (of 7 total)
  • #4778

    vorrei costruire un trading system basato su pattern di prezzo tipo:

    setup= (open<close) and (open[1]>close[1]) and (high<high[1]) and (low>low[1])

    entrata= high + POINTSIZE

    IF NOT LongOnMarket AND setup THEN

    BUY  1  CONTRACTS AT entrata stop

    ENDIF

    set target pprofit 10

    fino a qui tutto bene…..il problema è che non riesco a mette lo stop sotto il livello low[1] del setup.

    #4856

    Ciao, qui di seguito come posizionare lo stop loss a “Low” [1]:

    Ditemi se questo funziona? Grazie!

    #4863

    purtroppo no

    se ad esempio passano 10 candele dopo l’acquisto, lui mi considera l’ultimo chiusura e l’ultimo low[1].

    io vorrei metterlo al low[1] del pattern……e che restasse quello per sempre

    #4865

    ho provato con il barindex…….cioè

    numerocandele= barindex-(tradeindex+2) // conto il numero di candele che sono passate dall’acquisto + 2 candele per tornare indietro di due dall’acquisto

    stoploss=low[numerocandele]

    ma non funziona…….non so prorpio come fare

     

    #4879

    Ciao, scusa se non capisco la tua richiesta.
    E ‘questo codice corrisponde a ciò che si vuole fare?

     

    #4899

    ti ringrazio Nicolas……pare che funzioni……..lo testerò per bene

    #4918

     

    nel ProBacktest  funziona benissimo……..il problema è nel trading automatico.

    Mi rifiuta di fare il trading automatico e mi  esce una scritta:

     

    DEFPARAM CumulateOrders = False
    defparam FLATBEFORE=090000
    defparam flatafter=170000

    bwr=(open<close) and (open[1]>close[1]) and (high<high[1]) and (low>low[1])

    entrata= high +   POINTSIZE

    IF NOT LongOnMarket AND bwr THEN
    BUY 1 CONTRACTS AT entrata stop

    ENDIF

    If LongOnMarket AND barindex-tradeindex>=4  THEN
    SELL AT MARKET
    ENDIF
    set stop loss (high-low[1])+3*pointsize
    set target profit 8

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

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