// draw retracement retracement text
DrawText(this._strWave2RetracementLinesTag + "RLBL" + index.ToString(),
false,
String.Format("{0:F2}", this._doubleRetracementLevels[index] * 100) + "%",
intEndBarVL + 4,
doubleY + this._doublePointOffset / 5,
this._colorRetracementText[index],
new Font(FontFamily.GenericSansSerif, this._intRetracementFontSize[index], this._fsRetracementText, GraphicsUnit.Pixel),
StringAlignment.Center,
Color.Transparent,
Color.Transparent,
0);
No overload for method 'Draw Text' takes 11 arguments

I have already read everything in the help manual, including the site you reference. I don't write code, so I don't know how to make/identify an overload, or where to put it. (I was so impressed with myself that I could even figure out how to find the problem in the code using F5!)
Comment