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

Series<T> with multi timeframe

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

    Series<T> with multi timeframe

    Hi,

    [Note - I have accidentally posted this in the Nt7, not 8 forum! Sorry - Could not figure out how to delete it]

    I have a chart that can be any time period, but I also add some additional data series to them for the indicator. All those additions are 30 second series.

    I want to add a Series. This will hold a calculation of 2 or more of the 30 second data series values. When I do this though, the Series only matches the barcount of the main data series, which could be anything.I've read through the docs, but am missing something....

    How can I use a data series with a 30 second period, to match the additional data series rather than the primary user added one that is charted?

    For example

    AddDataSeries("VOL", Data.BarsPeriodType.Second, 30, Data.MarketDataType.Last);

    and I have

    volseries = new Series<double>(this, MaximumBarsLookBack.Infinite);

    The main series for example may be a 900 tick chart. The volseries will be created with that bar array. I want it created based on the adddataseries array. Is this possible? It looked in the docs you could pass a 'Bars' object, but I could not get it to work.

    I could just use a double[] instead, but then some of the NT functions I was using are no longer usable.

    Thanks.

    #2
    OK, please ignore - Finally figured it out. Found I can pass BarsArray[dataseries], so working OK now.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by giulyko00, Yesterday, 12:03 PM
    2 responses
    10 views
    0 likes
    Last Post giulyko00  
    Started by r68cervera, Today, 05:29 AM
    0 responses
    3 views
    0 likes
    Last Post r68cervera  
    Started by geddyisodin, Today, 05:20 AM
    0 responses
    6 views
    0 likes
    Last Post geddyisodin  
    Started by JonesJoker, 04-22-2024, 12:23 PM
    6 responses
    37 views
    0 likes
    Last Post JonesJoker  
    Started by GussJ, 03-04-2020, 03:11 PM
    12 responses
    3,241 views
    0 likes
    Last Post Leafcutter  
    Working...
    X