Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Correlation indicator should automatically handle rollovers.

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

    Correlation indicator should automatically handle rollovers.

    The correlation indicator takes a string that specifies which instrument to compare against. This can be troublesome during rollover because you have to go into your indicators and update the strings. So in my own spread indicator (which frankly you should also add) I have some code to automatically use the main chart's month with a bool to specify if the user wants to provide the month in the string. This might not work for every case with correlations because front months might be different, in which case perhaps we could add logic to always use the front month?


    Code:
    else if (State == State.Configure)
                {        
                    string MyFrontLeg = FrontLeg;
                    string MyBackLeg = BackLeg;
                    string Month = BarsArray[0].Instrument.FullName.Split(' ')[1];
    
                    if(!UserProvidesMonth)
                    {
                        MyFrontLeg = FrontLeg + " " + Month;
                        MyBackLeg = BackLeg + " " + Month;
                    }
    
    
                    AddDataSeries(MyFrontLeg, BarsArray[0].BarsPeriod);
                    AddDataSeries(MyBackLeg, BarsArray[0].BarsPeriod);
                }

    #2
    Hello TheWhiteDragon,

    Thank you for your post.

    I've added a feature request to add rollover handling to the Correlation indicator for you - this may be tracked with the number SFT-4302.

    As with all feature requests, interest is tracked before implementation is considered, so we cannot offer an ETA or promise of fulfillment. If implemented, it will be noted in the Release Notes page of the Help Guide.

    Release Notes — https://ninjatrader.com/support/help...ease_notes.htm

    If you'd like to share your code, you can submit to the User App Share here if you haven't already:

    Upload tools and add-ons that you build to share through the NinjaTrader Ecosystem User App Share.


    Please let us know if we may be of further assistance to you.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    557 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X