Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Changing the color of an Indicator plot from the strategy code

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

    Changing the color of an Indicator plot from the strategy code

    Hello,

    Is it possible to set the color of an indicator from the strategy which uses it?

    For example:

    Code:
    protected override void Initialize()
    {
       Add(SMA(15)); // this has default color Orange, I want to change to Blue.
    }
    Tried calling:
    Code:
    SMA(15).PlotColors[0][0] = Color.Blue;
    in various places without success.

    Thanks,
    Boaz

    #2
    Originally posted by boaza View Post
    Hello,

    Is it possible to set the color of an indicator from the strategy which uses it?

    For example:

    Code:
    protected override void Initialize()
    {
       Add(SMA(15)); // this has default color Orange, I want to change to Blue.
    }
    Tried calling:
    Code:
    SMA(15).PlotColors[0][0] = Color.Blue;
    in various places without success.

    Thanks,
    Boaz
    Try:
    Code:
     
    SMA(15).Plots[0].Pen.Color = Color.Blue;

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    104 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    52 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    34 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    38 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    74 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X