Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Comparing An Indicator On Current Bar vs previous bars

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

    Comparing An Indicator On Current Bar vs previous bars

    Hello! I'm stumped on a calculation I'd like to make for a customization. I'd like to use the built-in indicators and see their rate of change to help determine trend, so comparing the value on the current bar vs previous bars.

    I was thinking I should use a private variable, but how can I have this update every x candles on a time-based chart?

    Hoping this is a simple question and I'm just missing the terms to search the docs for. Thank you!

    #2
    Hello trilliantrader,

    Thank you for your post.

    You can use an int variable to know how many bars has passed.

    When the first condition happens, set the bar number.

    Code:
    if (<your condition>)
    {
    firstConditionBar = CurrentBar;
    }
    
    if (CurrentBar - firstConditionBar == 3) // 3 candles have happened
    {
    //do something here
    }


    Indicators can also be accessed via barsAgo indexing.

    For example,

    Code:
    //print the current value of a 20 period SMA
    double value = SMA(20)[0];
    Print("The current SMA value is " + value.ToString());
    
    //print the value 1 bar ago ago
    double value = SMA(20)[1];
    Print("The current SMA value is " + value.ToString());
    ​​​

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    55 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    73 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    38 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    99 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    60 views
    0 likes
    Last Post PaulMohn  
    Working...
    X