The first line of line works fine. It is the MACD line, 1 of 3 parts of the MACD indicator.
The second line of code is the MACD average, also a line and part 2 of 3 of the MACD indicator.
NT7 doesn't like the syntax on this line. How do I fix it?
Thx.
MACD(12, 26, 9).Plots[0].Pen.Color = Color.Blue;
MACD(12, 26, 9).Avg.Plots[0].Pen.Color = Color.Orange; // gives error CS1061

Comment