Today I copy code from standart indicator DEMA in a new indicator HozDEMA, for the purpose of understanding base syntax Ninja Script.
I edit that fragment to black color, but on the char I don't notice any change!!! Why?
/// <summary>
/// This method is used to configure the indicator and is called once before any bar data is loaded.
/// </summary>
protected override void Initialize()
{
Add(new Plot(Color.Black, "DEMA"));
Overlay = Enabled;
}

Comment