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

Finding last X number of swing low/high

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

    Finding last X number of swing low/high

    Hey guys,
    I have a simple request. I'd like to find the last 10 maximum swing high or minimum swing low values. How can I do this in Ninjascript?

    #2
    Hello PN720,

    Thanks for your post.

    I would recommend using the SwingHighBar and SwingLowBar methods of the Swing indicator to identify the BarsAgo indexes for swing highs and lows, and you can supply that Bars Ago index to a Low/High Price Series to reference what that bar value would be.

    Some example code for printing out the last 10 instances of Swing highs and the associated High values is included below.

    Code:
    protected override void OnBarUpdate()
    {
    
        if (CurrentBar < 500)
            return;
        ClearOutputWindow();
        Print(Swing(10).SwingHighBar(0, 1, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 1, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 2, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 2, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 3, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 3, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 4, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 4, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 5, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 5, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 6, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 6, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 7, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 7, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 8, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 8, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 9, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 9, CurrentBar)]);
        Print(Swing(10).SwingHighBar(0, 10, CurrentBar) + " " + High[Swing(10).SwingHighBar(0, 10, CurrentBar)]);
    }


    We look forward to assisting.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Belfortbucks, Today, 09:29 PM
    0 responses
    6 views
    0 likes
    Last Post Belfortbucks  
    Started by zstheorist, Today, 07:52 PM
    0 responses
    7 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    151 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Started by mattbsea, Today, 05:44 PM
    0 responses
    6 views
    0 likes
    Last Post mattbsea  
    Started by RideMe, 04-07-2024, 04:54 PM
    6 responses
    33 views
    0 likes
    Last Post RideMe
    by RideMe
     
    Working...
    X