amibroker afl code zigzag amibroker

  1. P

    help adding dates to swing points in amibroker afl

    can someone please add dates to each zig zag high and low points the code is as follows ZZPercent = Param("ZZPercent", 5 ); ATRPeriod = Param("ATRPeriod", 5 ); ATRFactor = Param("ATRFactor", 1.5, 0, 5 ); HLPivot = ZZPercent * 0.01 + ATRFactor * ATR( ATRPeriod )/Close; Ll = Low[ 0 ]; Hh =...