I have been trying to use the DrawTextFixed in an indicator. When I use
DrawTextFixed("Cycle","Cycle Period = "+Period,TextPosition.BottomLeft);
It works fine, but when I add a color option, or opacity it won't compile.
DrawTextFixed("Cycle","Cycle Period = "+Period,TextPosition.BottomLeft, Color.Red);
Compiler gives the error, No Overload for method DrawTextFixed takes '4' arguments.
According to the help files the Method allows for properties to be used with this command.
What am I missing?

Comment