Announcement

Collapse
No announcement yet.

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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    61 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    34 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    198 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    364 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    283 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X