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 port119, 04-27-2024, 02:43 PM
    3 responses
    30 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by sastrades, 01-31-2024, 10:19 PM
    13 responses
    203 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by reynoldsn, Today, 04:40 PM
    0 responses
    4 views
    0 likes
    Last Post reynoldsn  
    Started by Philippe56140, 04-27-2024, 02:35 PM
    6 responses
    54 views
    0 likes
    Last Post bltdavid  
    Started by ETFVoyageur, Yesterday, 06:05 PM
    7 responses
    45 views
    0 likes
    Last Post ETFVoyageur  
    Working...
    X