Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

set custom color in strategy

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

    set custom color in strategy

    Hallo,

    i want to set custom colors in my strategy like this:

    BarColor = "106, 142, 236";
    CandleOutlineColor = Color.CornflowerBlue;
    BackColor = Color.MidnightBlue;

    but i can´t compile this. I get this message:

    An implicit conversion from type "string ", "System.Drawing.Color"is not possible.

    Do you have any ideas?
    Thx Blackburn

    #2
    Hello Blackburn,

    Thank you for your post.

    The compile errors are likely coming from the RBG string you are using.

    If you would like to use custom RBG colors, please use the Color.FromArgb() method:

    Creates a Color structure from the four 8-bit ARGB components (alpha, red, green, and blue) values.

    Code:
    BarColor =  Color.FromArgb(106, 142, 236);
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, Yesterday, 09:41 PM
    1 response
    14 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    31 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    30 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-25-2026, 09:53 PM
    0 responses
    34 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 03-25-2026, 09:51 PM
    0 responses
    19 views
    0 likes
    Last Post CaptainJack  
    Working...
    X