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 judysamnt7, 03-13-2023, 09:11 AM
    4 responses
    53 views
    0 likes
    Last Post DynamicTest  
    Started by ScottWalsh, Today, 06:52 PM
    4 responses
    32 views
    0 likes
    Last Post ScottWalsh  
    Started by olisav57, Today, 07:39 PM
    0 responses
    4 views
    0 likes
    Last Post olisav57  
    Started by trilliantrader, Today, 03:01 PM
    2 responses
    19 views
    0 likes
    Last Post helpwanted  
    Started by cre8able, Today, 07:24 PM
    0 responses
    6 views
    0 likes
    Last Post cre8able  
    Working...
    X