Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ZigZag deviation type

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    ZigZag deviation type

    Hello, NT experts,

    The ZigZag deviation type has 2 options: points and percentage. I would like to know the exact definitions of points and percentage.

    Now I assume the following: if the prior ZigZag is a swing high, then the percentage is the (ZigZag_Immediate_prior_HighBar_price - current_price)/ZigZag_Immediate_prior_HighBar_price. If this percentage is greater than the input value, then ZigZag is ready to find the next ZigZag low.

    Let me know if that makes sense.

    #2
    binwang2,

    The DeviationTypes are used when determining if you are over the high/low deviations. That information is then used to determine whether or not to set a new high/low or not.

    bool isOverHighDeviation = (deviationType == DeviationType.Percent && IsPriceGreater(highSeries[1], (lastSwingPrice * (1.0 + deviationValue * 0.01))))
    || (deviationType == DeviationType.Points && IsPriceGreater(highSeries[1], lastSwingPrice + deviationValue));
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    649 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    370 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    109 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    573 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    576 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X