TRADING SU ECCESSO

Forums ProRealTime forum Italiano Supporto ProOrder TRADING SU ECCESSO

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

    Buongiorno,

    ringrazio già anticipatamente chi vorrà aiutarmi

    Avrei la necessità di testare un eventuale sistema che lavori in H1

    Prendo come riferimento la candela che apre alle ore 14:00 e termina alle ore 15:00

    Se durante la giornata avviene un breakout dei massimi o dei minimi ed il movimento di breakout si estende fino al 2.618, entro in contro trend con target 1.618 e con stop l’ampiezza della candela 14:00-15:00

    Se sono dentro al trade alle ore 22:00, il sistema chiude e non va overnight

     

    ESEMPIO SHORT

    MASSIMO CANDELA 14:00-15:00  13000

    MINIMO CANDELA 14:00-15:00 12800

    RANGE 200 PUNTI

    Se durante la giornata (fino alle ore 22:00) avviene un breakout dei minimi  ed i prezzi si estendono fino a 12277 (12800-(200*2,618)) entro in direzione long  con target 12600 (12277+(200*1,618)) e stop 12077 (12277, il mio livello di ingresso – 200 relativi al range della candela che chiamo trigger)

     

    ESEMPIO LONG

    MASSIMO CANDELA 14:00-15:00  13000

    MINIMO CANDELA 14:00-15:00 12800

    RANGE 200 PUNTI

    Se durante la giornata (fino alle ore 22:00) avviene un breakout dei massimi  ed i prezzi si estendono fino a 13523 (13000+(200*2,618)) entro in direzione short  con target 13200 (13523-(200*1,618)) e stop 13723 (13523, il mio livello di ingresso + 200 relativi al range della candela che chiamo trigger)

     

    Grazie ancora a chi vorrà darmi una mano

    HARY

     

    #214637

    Prova questo:

    defParam flatAfter = 220000
    cTime = time >=150000 and time <=220000
    positionSize = 1
    //—————————————–
    if openTime = 140000 then
    myHighest = high
    myLowest = low
    endif
    if openTime >= 140000 and openTime <=150000 then
    myHighest = max (myHighest,high)
    myLowest = min (myLowest,low)
    myRange = (myHighest – myLowest)
    //—
    myEntryL = (myLowest – (myRange*2.618))
    targetL = (myEntryL + (myRange*1.618))
    stopL = (myEntryL – myRange)

    myEntryS = (myHighest + (myRange*2.618))
    targetS = (myEntryS – (myRange*1.618))
    stopS = (myEntryS + myRange)
    endif
    //————————————————————–
    if cTime and not onMarket and close crosses under myLowest then
    buy positionSize contracts at myEntryL LIMIT
    set target price targetL
    set stop price stopL
    endif
    //————–
    if cTime and not onMarket and close crosses over myHighest then
    sellShort positionSize contracts at myEntryS LIMIT
    set target price targetS
    set stop price stopS
    endif
    //————————————————

     

     

    #214646

    Ora lo provo Mauro

    Infinite Grazie

     

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