Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

5 min bar vs 60 min bar

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

    5 min bar vs 60 min bar

    In creating a strategy where you say

    if(Open[1]>Close[1])
    Enterlong();

    Where in the stratgy code can you change to reflect if its an hourly bar or a minute bar or a 5 minute bar. These values will be different for differenrt timeframes?

    Please advise?

    Thanks

    #2
    Hi Lisa1980,

    When you apply the strategy to a chart, it will be the interval the chart is set to. If you apply this at the Strategies tab, or Strategy Anaylzer, you will be prompted to enter the instrument and interval at that time.
    TimNinjaTrader Customer Service

    Comment


      #3
      So there is no way to hard code it in the strategy to use only specific type of bar durations like 60 min bars?

      Comment


        #4
        Hi Lisa1980,

        You can add a series and run all the conditions against the proper BarsInProgress.

        More info at - http://www.ninjatrader-support.com/H...ameInstruments
        TimNinjaTrader Customer Service

        Comment


          #5
          Thanks I think the link you sent shows great examples.

          Comment


            #6
            Lisa1980,

            Here's some examples of Boolean logic statements using BarsArray[] and variables:

            MACD(12,26,9)[0] > 0
            &&
            MACD(BarsArray[my_60m_bar],12,26,9)[0] > 0
            &&
            MACD(BarsArray[my_1d_bar],12,26,9)[0] > 0
            &&
            MACD(BarsArray[my_COMPQ_5m_bar],12,26,9)[0] > 0

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by sjsj2732, Yesterday, 04:31 AM
            0 responses
            31 views
            0 likes
            Last Post sjsj2732  
            Started by NullPointStrategies, 03-13-2026, 05:17 AM
            0 responses
            286 views
            0 likes
            Last Post NullPointStrategies  
            Started by argusthome, 03-08-2026, 10:06 AM
            0 responses
            283 views
            0 likes
            Last Post argusthome  
            Started by NabilKhattabi, 03-06-2026, 11:18 AM
            0 responses
            133 views
            1 like
            Last Post NabilKhattabi  
            Started by Deep42, 03-06-2026, 12:28 AM
            0 responses
            91 views
            0 likes
            Last Post Deep42
            by Deep42
             
            Working...
            X