break out

Collapse
X
 
  • Ora
  • Show
Clear All
new posts
  • planta
    Member

    • Oct 2013
    • 39

    #1

    break out

    INPUTS: @periods(10), @trailAmount(100), @trailPercent(10), @stopLoss(400)

    SET TRAILING_STOP = @trailAmount
    SET TRAILING_PERCENT = @trailPercent
    SET STOP_LOSS = @stopLoss

    SET hh = HighestHighValue(@periods)
    #SET ll = LowestLowValue(@periods)

    HIGH = hh

    Ciao a tutti, chi mi da una mano?
    volevo far si che questo buy script di beeswing trailing facesse la stessa cosa ma invece che sul massimo del highesthighvalue sulla rottura al rialzo di questo valore
    Come cambio il codice?
    Grazie 1000 in anticipo
  • maxmax68
    Senior Member

    • Sep 2013
    • 186

    #2
    Codice:
    HIGH > REF(hh, 1)

    Comment

    Working...