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

Daily ATR

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

    Daily ATR

    Hi, I'm trying to access the daily ATR from my min chart. The daily ATR values I'm accessing from the min chart are not the same as the values shown on the ATR indicator that is on my daily chart. Any thoughts?

    protected override void Initialize()
    {
    Add(PeriodType.Day, 1);
    }

    // on bar update section

    if (BarsInProgress == 1)
    {
    ATRval = ((ATR(period)[0]);
    }

    if (BarsInProgress == 0)
    {
    ATRBarVal.Set(ATRval);
    }

    #2
    pman777, thanks for the post - which CalculateOnBarClose setting are you working with here? How many days of data is loaded for the minute chart from which you attempt to access the daily ATR values?
    BertrandNinjaTrader Customer Service

    Comment


      #3
      tx u for response Bertrand. CalculateOnBarClose is set to "True" adn I have 10 days of data loaded on my min chart

      Comment


        #4
        Thanks, please try loading more data, like 30 days. So you would have enough to correctly calculate the value on the higher timeframe for the ATR. With 10 calendar days and an ATR spanning 14 bars, you would see differences as it's then still playing 'catch up' to current values.
        BertrandNinjaTrader Customer Service

        Comment


          #5
          that did it Bertrand ... thank you!!!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by DayTradingDEMON, Today, 09:28 AM
          3 responses
          19 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by Stanfillirenfro, Today, 07:23 AM
          9 responses
          23 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by George21, Today, 10:07 AM
          0 responses
          8 views
          0 likes
          Last Post George21  
          Started by navyguy06, Today, 09:28 AM
          1 response
          7 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by cmtjoancolmenero, Yesterday, 03:58 PM
          8 responses
          34 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Working...
          X