I am designing an indicator that prints emas on the chart and I have a problem in the following line:
Draw.Line(this, "EMA9" + CurrentBar, 0, ema9[0], -1, ema9[0], Brushes.Green, DashStyleHelper.Solid, 2);
The error that the console gives me is the following:
"The name DashStyleHelper does not exist in the current context."
I guess there is some problem with the DashStyle property that is misspelled on the line. Can someone help me please?
THANKS

Comment