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

Adding DataSeries

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

    Adding DataSeries

    Hi
    How adding DataSeries, example


    double value = MACD(DS1.Indicator+DS2.Indicator, 12,26,9)[0];
    Thanks

    #2
    Hello,

    This link shows how to do this:


    Here is an example using the SMA indicator twice:

    //put this in Variables
    private
    DataSeries myDS;

    //put this in intialized
    myDS =
    new DataSeries(this);

    //put this in OnBarUpdate
    myDS.Set(SMA(
    10)[0]+SMA(5)[0]);
    DenNinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_Ben View Post
      //put this in Variables
      private
      DataSeries myDS;

      //put this in intialized
      myDS =
      new DataSeries(this);

      //put this in OnBarUpdate
      myDS.Set(SMA(
      10)[0]+SMA(5)[0]);
      very thank you

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by ScottWalsh, Today, 06:52 PM
      4 responses
      32 views
      0 likes
      Last Post ScottWalsh  
      Started by olisav57, Today, 07:39 PM
      0 responses
      4 views
      0 likes
      Last Post olisav57  
      Started by trilliantrader, Today, 03:01 PM
      2 responses
      19 views
      0 likes
      Last Post helpwanted  
      Started by cre8able, Today, 07:24 PM
      0 responses
      6 views
      0 likes
      Last Post cre8able  
      Started by Haiasi, Today, 06:53 PM
      1 response
      4 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Working...
      X