Announcement

Collapse
No announcement yet.

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?

    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.

        Comment


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

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          581 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          338 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          103 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          554 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          552 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X