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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    63 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    90 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    47 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    105 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    63 views
    0 likes
    Last Post PaulMohn  
    Working...
    X