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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    47 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    51 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X