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

Calculating an indicator on a secondary instrument with BarsArray

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

    Calculating an indicator on a secondary instrument with BarsArray

    When I use the BarsArray to calculate a moving average of a secondary instrument, what data is it using? That is, given the code below, is this an SMA of the Close? What if I want to calculate the SMA of the Typical price instead?

    aveSecondary = SMA(BarsArray[1], secondaryPeriod)[0];

    #2
    Hi RandomTask,

    Thank you for posting.

    You are correct, the SMA will use the closing price to calculate the moving average by default unless otherwise specified.

    If you want to change the value to a Typical price instead, you will need to changed the BarsArray[1] to -
    Code:
    SMA([COLOR="Red"]Typicals[/COLOR][1], secondaryPeriod)[0];
    I made the change in the color red.

    I am attaching a link to the online help guide on the Typicals series, as well as using Multi-Time frame & Instruments.
    http://www.ninjatrader.com/support/h...l?typicals.htm
    http://www.ninjatrader.com/support/h...nstruments.htm

    Please let me know if I can be of further assistance
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Thank you.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by frslvr, 04-11-2024, 07:26 AM
      6 responses
      105 views
      1 like
      Last Post NinjaTrader_BrandonH  
      Started by trilliantrader, 04-18-2024, 08:16 AM
      6 responses
      26 views
      0 likes
      Last Post trilliantrader  
      Started by arvidvanstaey, Yesterday, 02:19 PM
      5 responses
      14 views
      0 likes
      Last Post NinjaTrader_Zachary  
      Started by Rapine Heihei, Yesterday, 08:25 PM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by Mongo, Yesterday, 11:05 AM
      6 responses
      27 views
      0 likes
      Last Post Mongo
      by Mongo
       
      Working...
      X