Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SwingHigh-SwingLow > int as a Strategy condition

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

    SwingHigh-SwingLow > int as a Strategy condition

    Hello again Ninja Gurus!

    I'm trying to add a condition in a strategy where it will only enter a trade if the difference between the SwingHigh and SwingLow excedes an integer... say 2 for eight ticks on the /es.

    Seeing that the SwingHigh/Low value sometimes does not exist, and seeing the bar[0] value doesn't exist, I've coded it this way;

    && ((Swing(5).SwingHigh[1] - Swing(5).SwingLow[1]) >= 2) || (Swing(5).SwingHigh[1] == null) || (Swing(5).SwingLow[1] == null)

    Which should allow a trade if one bar ago EITHER there was a 2 or more point difference between the swinghigh and low lines OR there was no swing hi or low line.

    Alas that code does not seem to work. Any pointers?

    Thanks!

    #2
    Hello,

    The Swing indicator redraws the values, which is not like most indicators. Use the Print() method to see the value change after the fact. You can still work with the Swing indicater but it is more complicated.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    656 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    371 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
    574 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    579 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X