Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trend backcolor

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

    Trend backcolor

    Hi all,

    I am using a TEMA to set the background color depending on whether rising or falling. I can get the rising and falling colors to work. But I cant seem to get it to work on the bars where the TEMA is same as previous bar.

    Here is code:

    if (TEMA(100)[0] < TEMA(100)[1])
    {
    BackColor = Color.MistyRose;
    FlagTEMA.Set(-1);
    }
    if (TEMA(100)[0] > TEMA(100)[1])
    {
    BackColor = Color.MintCream;
    FlagTEMA.Set(1);
    }

    if ( (TEMA(100)[0]) == (TEMA(100)[1]) )
    {
    BackColor = Color.White;
    }

    Any suggestions?

    #2
    I suggest debugging your NinjaScript as per here: http://www.ninjatrader-support.com/v...ead.php?t=3418

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    42 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    25 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    162 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    98 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    157 views
    2 likes
    Last Post CaptainJack  
    Working...
    X