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 andrewtrades, Today, 04:57 PM
    1 response
    5 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    3 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    436 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    7 views
    0 likes
    Last Post FAQtrader  
    Started by rocketman7, Today, 09:41 AM
    5 responses
    19 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X