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 charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    52 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    142 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    160 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    96 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    276 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X