Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Previous Swing Highs and Lows

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

    Previous Swing Highs and Lows

    Hello, I'm using the Swing indicator in my strategy and I'm having trouble finding information on how to access previous highs and lows. For example, using Swing(5).SwingHigh[0] will give me the most recent Swing High with a strength of 5, but I would like to know where the last x number of highs were so I can plot higher highs and lower lows. Can someone provide a simple example? Thanks

    #2
    Hello KNalley,

    The SwingHigh series will just return the value at the number of BarsAgo you requested. For working with the instances of the swings you would need to use SwingHighBar:


    Here is an example of gathering the last two instances of high swings and then getting their values:


    Code:
    int BarsAgo = Swing(4).SwingHighBar(0, 1, Bars.BarsSinceNewTradingDay); 
    if(BarsAgo < 0 || CurrentBar <= BarsAgo) return;
    
    double swingHigh = Swing(4).SwingHigh[BarsAgo];
    Print(swingHigh);
    
    int BarsAgo2 = Swing(4).SwingHighBar(0, 2, Bars.BarsSinceNewTradingDay); 
    
    if(BarsAgo2 < 0 || CurrentBar <= BarsAgo2) return;
    
    double swingHigh2 = Swing(4).SwingHigh[BarsAgo2];
    Print(swingHigh2);
    you can also use the High series as shown in the help guide sample.


    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Thank you, I can work with that example

      Comment


        #4
        hello what is Swing(4) ??

        Comment


          #5
          Hello jimmy_NT,

          Swing is the swing indicator, the 4 is the strength parameter the swing takes: https://ninjatrader.com/support/help...lightsub=swing
          JesseNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Pattontje, Yesterday, 02:10 PM
          2 responses
          14 views
          0 likes
          Last Post Pattontje  
          Started by flybuzz, 04-21-2024, 04:07 PM
          17 responses
          229 views
          0 likes
          Last Post TradingLoss  
          Started by agclub, 04-21-2024, 08:57 PM
          3 responses
          17 views
          0 likes
          Last Post TradingLoss  
          Started by TradingLoss, 04-21-2024, 04:32 PM
          4 responses
          43 views
          2 likes
          Last Post TradingLoss  
          Started by cre8able, 04-17-2024, 04:16 PM
          6 responses
          56 views
          0 likes
          Last Post cre8able  
          Working...
          X