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 argusthome, 03-08-2026, 10:06 AM
    0 responses
    81 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    46 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    29 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    32 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    66 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X