chiudere posizione con un target statistico in percentuale %

Forums ProRealTime forum Italiano Supporto ProOrder chiudere posizione con un target statistico in percentuale %

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

    Buonasera,  vorrei chiudere posizioni con un target “statistico” in percentuale una volta che il prezzo si è allontanato ad esempio di 0.75%  dal Pivot Giornaliero sia in acquisto che in vendita, il sistema entra a mercato al breakout con chiusura SOPRA o SOTTO il Pivot Giornaliero . Ringrazio in anticipo chi potrà aiutarmi.

    #223062

    Prova questo, dovrebbe andare bene, provato sul Dax a 15m (Roberto magari controlla).

    defParam cumulateOrders = false
    defparam flatAfter = 220000
    positionSize = 1
    //—————————————————
    pivot = (dHigh(1) + dLow(1) + dClose(1))/3
    myPerc = 0.75
    xPerc = (close*myPerc/100)/pointSize

    myTargetL = pivot + xPerc
    myTargetS = pivot – xPerc
    myStopL = 0.5
    myStopS = 0.5

    if not onMarket and close crosses over pivot then
    buy positionSize contracts at market
    set stop %Loss myStopL
    set target price myTargetL
    endif

    if not onMarket and close crosses under pivot then
    sellShort positionSize contracts at market
    set stop %Loss myStopS
    set target price myTargetS
    endif

    //————————————————
    graphOnPrice pivot
    graphOnPrice myTargetL
    graphOnPrice myTargetS

    1 user thanked author for this post.
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