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

Can I add a dynamic second data series?

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

    Can I add a dynamic second data series?

    Lets say I am using 15 min candles for my data series. I have an indicator that I would like to use 5 minute candles for to get more granular. But I want to build the indicator so that whatever the main data series is, my second data series will just take it and divide it by a number like 3. Is this possible?

    #2
    Hello ErikY,

    Yes that is possible. The indicator can use AddDataSeries to add a more granular series. You can then use the BarsInProgress property to separate different parts of your logic.

    To get the primary bar prices you can use the plural close series Closes[0][0] which represents the primary price.

    I look forward to being of further assistance.

    JesseNinjaTrader Customer Service

    Comment


      #3
      Thanks Jesse.

      Is there a way that I can figure out the main data series value, so that I can simply divide that value by 2 when i do the AddDataSeries?

      So something like this:

      int DSMinutes = MainDataSeries.value;

      AddDataSeries(Data.BarsPeriodType.Minute, DSMinutes/2);

      So what I don't know how to do is get the main data series minutes value, or whatever that type may be, ticks, minutes, seconds, etc.

      Comment


        #4
        Hello ErikY,

        AddDataSeries cannot use runtime variables and cannot be dynamic so you would need to hard code that value.

        I look forward to being of further assistance.
        JesseNinjaTrader Customer Service

        Comment


          #5
          OK, I was afraid of that. Thanks.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Barry Milan, Yesterday, 10:35 PM
          5 responses
          16 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by DanielSanMartin, Yesterday, 02:37 PM
          2 responses
          13 views
          0 likes
          Last Post DanielSanMartin  
          Started by DJ888, 04-16-2024, 06:09 PM
          4 responses
          13 views
          0 likes
          Last Post DJ888
          by DJ888
           
          Started by terofs, Today, 04:18 PM
          0 responses
          12 views
          0 likes
          Last Post terofs
          by terofs
           
          Started by nandhumca, Today, 03:41 PM
          0 responses
          8 views
          0 likes
          Last Post nandhumca  
          Working...
          X