Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Simple historical vs real time code help

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

    Simple historical vs real time code help

    Hi,

    Very simple question. Why does this work fine on historical bars and live bars when using onbarclose, but when I set to onpricechange, no live bars are painted? It's obviously something to do with the last line but I can't figure out how I should amend for realtime. Thanks.


    if (CurrentBar < 20)
    return;

    double smoothingFactor = 2.0 / (period + 1);
    double currentEMA = (Input[0] - previousEMA) * smoothingFactor + previousEMA;


    if (currentEMA > previousEMA)

    {
    BarBrush = Brushes.Lime;
    }


    else if (currentEMA < previousEMA)

    {
    BarBrush = Brushes.Red;
    }

    else

    {
    BarBrush = Brushes.Transparent;
    }


    previousEMA = currentEMA;


    #2
    Hello Sparkyboy,

    There is nothing that is very obvious with the code provided, you will likely need to use a Print here to see what values are being saved to the currentEMA and previousEMA in that use case.



    Comment

    Latest Posts

    Collapse

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