I have this Color property in an indicator.
I can change the color when I use the indicator in the chart, but I cant see ir when I add this indicator from an strategy with AddChartIndicator(),
Why? how could I see and change the indicator property color when I call from and strategy as indicator ?
Thank you
[Display(Name="myColor", Description="My Color", Order=8, GroupName="Visual")]
public SolidColorBrush myColor
{
get {return myColorVar;}
set {myColorVar= value;}
}

Comment