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

Add

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

    Add

    I have an indicator that runs on a TF chart and accesses the ES to determine trend direction. I want to ADD() the ES contract in the Initialize section for the same contract date as the TF chart that the indicator is running on. So when there is a rollover on the TF, the ES contract that is accessed internally is the same contact date.

    Is this possible?

    #2
    Hello FCatan,

    Please note we do not recommend dynamically adding data series based on information from the primary data series in the Initialize() method, but this is how you might go about doing this:

    Code:
    if(Instrument.FullName.Length == 8 && Instrument.FullName.Substring(0, 2) == "TF")
            Add("ES" + Instrument.FullName.Substring(2, 6), PeriodType.Minute, 60);
    This code makes sure the primary data series starts with TF and is 8 characters long, then adds the ES with the last 6 characters of the primary data series' name (ex. " 06-15")

    If you have any questions, please let us know.
    Michael M.NinjaTrader Quality Assurance

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by geddyisodin, Today, 05:20 AM
    0 responses
    3 views
    0 likes
    Last Post geddyisodin  
    Started by JonesJoker, 04-22-2024, 12:23 PM
    6 responses
    32 views
    0 likes
    Last Post JonesJoker  
    Started by GussJ, 03-04-2020, 03:11 PM
    12 responses
    3,239 views
    0 likes
    Last Post Leafcutter  
    Started by AveryFlynn, Today, 04:57 AM
    0 responses
    5 views
    0 likes
    Last Post AveryFlynn  
    Started by RubenCazorla, 08-30-2022, 06:36 AM
    3 responses
    79 views
    0 likes
    Last Post PaulMohn  
    Working...
    X