Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.



    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by 1001111, Today, 09:45 AM
    0 responses
    1 view
    0 likes
    Last Post 1001111
    by 1001111
     
    Started by DTSSTS, 01-28-2024, 12:07 PM
    11 responses
    557 views
    0 likes
    Last Post bmo111
    by bmo111
     
    Started by Torontobluejays, Today, 08:43 AM
    0 responses
    1 view
    0 likes
    Last Post Torontobluejays  
    Started by sastrades, 01-31-2024, 10:19 PM
    12 responses
    192 views
    0 likes
    Last Post sastrades  
    Started by Jimmyk, 01-26-2018, 05:19 AM
    8 responses
    866 views
    0 likes
    Last Post emuns
    by emuns
     
    Working...
    X