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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    579 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    334 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    554 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    551 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X