Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

3 State BackColor

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

    3 State BackColor

    I'm using the following statement that I lifted from your example. It modifies the backcolor based on the slope of the linear regression channel.

    BackColorAll = Slope(RegressionChannel(period,width).Middle, lookback, 0) > 0 ? Color.PaleGreen : Color.Pink;

    Is it possible to construct this statement in such a way as to have three states as outlined below?

    State1: Slope >= 0.1
    State2: Slope <= -0.1
    State3: -0.1< Slope <= 0.1

    I would like to be able to represent a different color for the transition state of slope moving negative to positive or vice versa.

    Thanks
    Daven

    #2
    Sure. Use if-else statements that covers your 3 states.

    Code:
    if (condition1)
        BackColorAll = Color.Green;
    else if (condition2)
        BackColorAll = Color.Blue;
    else if (condition3)
        BackColorAll = Color.Red;
    Josh P.NinjaTrader Customer Service

    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