Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Use multiple time frame of the same instument

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

    Use multiple time frame of the same instument

    Hello,

    I am making an automated strategy that use Some indicators from different time frames,
    SMA(50) of 15min time frame,
    ATR(14) of 1min chart
    and HMA (50) of the current Timeframe of the main chart (10Range)
    is it possible to do it ? No need to plot the SMA(50) and ATR(14)

    Thank you in advance,

    #2
    Hello pechtri,

    Thanks for your post.

    Yes, you could use the AddDataSeries() method to add additional data series to your script to be used for calculations.

    When referencing the indicator in your script, you would supply the indicator method with the BarsArray of the added series you want to have the indicator calculate from.

    For example, to have an indicator use the first added data series for calculations, you would pass in BarsArray[1].

    SMA(BarsArray[1], 20)[0]

    See the help guide documentation below for more information and sample code.

    AddDataSeries(): https://ninjatrader.com/support/help...dataseries.htm
    BarsArray: https://ninjatrader.com/support/help.../barsarray.htm
    Using Bars Objects as Input to Indicator Methods: https://ninjatrader.com/support/help...dicatorMethods
    SMA: https://ninjatrader.com/support/help...simple_sma.htm
    ATR: https://ninjatrader.com/support/help..._range_atr.htm
    HMA: https://ninjatrader.com/support/help...-_hull_hma.htm
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    90 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    137 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    120 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    72 views
    0 likes
    Last Post PaulMohn  
    Working...
    X