Target profit con bande di B.

Forums ProRealTime forum Italiano Supporto ProOrder Target profit con bande di B.

Viewing 3 posts - 1 through 3 (of 3 total)
  • #34569

    Salve a tutti, ho un problema con il target profit del mio sistema, cioè vorrei inserire un ordine long e target profit sulla banda superiore di Bollinger e un ordine short e target profit sulla banda inferiore.

    Ho provato a fare questo codice:

    if LONGONMARKET then
    valoreuscitalong = BollUp*POINTVALUE
    SET TARGET PROFIT valoreuscitalong
    endif

    dove Bollup sta definita prima, ma il sistema non mi chiude la posizione nella banda superiore ma la fa girare fino a che prende il stop loss.

     

    #34581

    Ciao,

    non avendo il codice completo non riesco a testare se è ok il suggerimento, ad ogni modo dovrebbe essere qualcosa di simile a questo:

     

    if LONGONMARKET then

    valoreuscitalong = BollUp*POINTVALUE
    SELL 1 contracts AT valoreuscitalong stop

    endif

     

    Io però lo scriverei così:

    c1 = (High >= BollingerUp[30](close))

    If c1 then
    sell at market
    endif

     

     

    1 user thanked author for this post.
    #34586

    Ok grazie funziona la seconda che avete scritto.

    La ringrazio.

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

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