Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Result Discrepency between Indicator and Strategy

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

    Result Discrepency between Indicator and Strategy

    Hi, i have an issue here as i have the same logic on both an indicator and on the strategy but the result are completely different.

    In the strategy i have in Onbarupdate() the following:
    Code:
    int ATR_zero        =     (int)(Math.Round(ATR(1)[0]/TickSize,1));
    This result gives an integer representing a number a ticks.

    But if i code that into a custom indicator like this:

    Code:
     protected override void Initialize()
            {
                Overlay                = false;
                 Add(new Plot(Color.Lime, "AtrZero"));
             }
     
            protected override void OnBarUpdate()
            {
               int     Range     = (int)(Math.Round(ATR(Period)[0]/TickSize,1));
               ATR_Zero.Set(Range); 
            }

    Then call this custom indicator in the Strategy with a Print function in OnBarUpdate():
    Code:
    Print(CustumIndicator(1).ATR_Zero[0]);

    The result is completly different than the previous one


    Code:
    Print(ATR_zero);

    Is there any rationale explantion??


    Thanks
    Chris

    #2
    At the end i found the issue, i didnt put the same lookback period between the two test.


    So results are the same. No problem.

    Comment

    Latest Posts

    Collapse

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