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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    161 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    310 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    245 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    349 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    179 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X