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 CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    232 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    150 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    161 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    243 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    198 views
    0 likes
    Last Post CarlTrading  
    Working...
    X