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 junkone, Today, 11:37 AM
    1 response
    9 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by frankthearm, Yesterday, 09:08 AM
    11 responses
    41 views
    0 likes
    Last Post frankthearm  
    Started by quantismo, 04-17-2024, 05:13 PM
    5 responses
    35 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by proptrade13, Today, 11:06 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by love2code2trade, 04-17-2024, 01:45 PM
    4 responses
    34 views
    0 likes
    Last Post love2code2trade  
    Working...
    X