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

Program EMA price line pivot gaps

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

    Program EMA price line pivot gaps

    As a novice, I'm baffled by a programming issue. My intent seems simple enough. I want to chart in a panel a line EMA of the price. I would further like to color the EMA line green when it is rising and red when it is falling. In the OnBarUpdate() section I use the following coding.

    if (CurrentBar < Period) return;

    if (EMA(Period) [0] >= EMA(Period) [1])
    {
    Upline.Set(EMA(Period) [0]);
    }
    else
    {
    Dnline.Set(EMA(Period) [0]);
    }

    It compiles fine, but when I run it, every period following a pivot point, up or down, is blank. Everything else between pivots displays as expected. I would greatly appreciate any assistance in moving beyond my first NinjaTrader program.

    #2
    Hello,

    The EMA should only have one Plot set if you want it to be a continuous line.

    You can also use the Rising() and Falling() methods to help determine when the line is rising or falling.

    If you have not yet, I would suggest reviewing our Indicator Reference Sample on Multi-Colored Plots for more information:

    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by algospoke, Yesterday, 06:40 PM
    2 responses
    23 views
    0 likes
    Last Post algospoke  
    Started by ghoul, Today, 06:02 PM
    3 responses
    14 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by jeronymite, 04-12-2024, 04:26 PM
    3 responses
    45 views
    0 likes
    Last Post jeronymite  
    Started by Barry Milan, Yesterday, 10:35 PM
    7 responses
    22 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by AttiM, 02-14-2024, 05:20 PM
    10 responses
    181 views
    0 likes
    Last Post jeronymite  
    Working...
    X