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 new data series

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

    Add new data series

    How can be new data series add into indicator ? I need to add 30 or more data series into indicator and getting daily open, weekly open and monthly open values ? All in one indicator for many futures or forex pairs.

    #2
    Hello freelancerbob,

    To add a data series to an indicator please see the following section of our helpguide,,


    You would have to add all thirty series to the script. Please see the following example which explains how you manage a multi series script,


    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Ok, i have added 2 pairs into initialize() function:

      protected override void Initialize()
      {
      Add("$EURUSD", PeriodType.Minute, 5);
      Add("$AUDUSD", PeriodType.Minute, 5);
      }

      How is possible to get CurrentOpen or open for both pairs ? I have used the following function only for one pair but NOT for more.
      protected override void OnBarUpdate(){
      Print("-------------");
      Print(Time[0]);
      Print(Open[0]);
      Print(CurrentDayOHL().CurrentOpen[0]);
      }

      These did not work:
      Print(Open[1][0]);
      Print(CurrentDayOHL().CurrentOpen[1][0]);
      Print(Open[2][0]);
      Print(CurrentDayOHL().CurrentOpen[2][0]);

      Comment


        #4
        Hello freelancerbob,

        You could use the following to get the open of day for the secondary series added,

        Code:
        if(BarsInProgress==1)
        	Print( Bars.GetDayBar(1).Open.ToString());
        And use the following for the third series you added,

        Code:
        if(BarsInProgress==2)
        	Print( Bars.GetDayBar(1).Open.ToString());
        Please see the following section of our helpguide,


        Please let us know if you need further assistance.
        Alan P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by giulyko00, Yesterday, 12:03 PM
        3 responses
        12 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by habeebft, Today, 07:27 AM
        1 response
        14 views
        0 likes
        Last Post NinjaTrader_ChristopherS  
        Started by AveryFlynn, Today, 04:57 AM
        1 response
        12 views
        0 likes
        Last Post NinjaTrader_Erick  
        Started by Max238, Today, 01:28 AM
        4 responses
        39 views
        0 likes
        Last Post Max238
        by Max238
         
        Started by r68cervera, Today, 05:29 AM
        1 response
        10 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X