I'm converting NT 7 strategy to NT 8 and want the candles colored when parameters are met.
I have the following:
public class MyStrategy : Strategy
{
private bool colorBars = true;
.
.
.
#region Properties
[Description("Color price bars mirrored from histogram data.")]
[Category("Sound and Display")]
[Gui.Design.DisplayName("Color Price Bars?")]
public bool ColorBars
{
get { return colorBars; }
set { colorBars = value; }
}
#endregion
}
What is the proper syntax for NT 8 for the candles to be colored?
Thanks

Comment