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 mintos, 04-02-2024, 08:22 PM
          7 responses
          38 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by PaulMohn, 04-24-2024, 03:49 AM
          5 responses
          39 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by claxxical, 05-30-2017, 12:30 PM
          38 responses
          4,480 views
          0 likes
          Last Post alancurry  
          Started by Felix Reichert, 04-26-2024, 02:12 PM
          10 responses
          70 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by lightsun47, Today, 11:37 AM
          1 response
          12 views
          0 likes
          Last Post NinjaTrader_Zachary  
          Working...
          X