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 PhillT, 04-19-2024, 02:16 PM
    4 responses
    31 views
    0 likes
    Last Post PhillT
    by PhillT
     
    Started by ageeholdings, 05-01-2024, 05:22 AM
    5 responses
    36 views
    0 likes
    Last Post ageeholdings  
    Started by reynoldsn, Today, 02:34 PM
    0 responses
    8 views
    0 likes
    Last Post reynoldsn  
    Started by nightstalker, Today, 02:05 PM
    0 responses
    15 views
    0 likes
    Last Post nightstalker  
    Started by llanqui, Yesterday, 09:59 AM
    8 responses
    30 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Working...
    X