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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    90 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    135 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    120 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X