The indicator is currently working, but I can't seem to customize the dash style for any particular line/plot.
This is my current code that works:
AddPlot(Brushes.White, "Ema1");
Plots[0].Width = 1.4F;
But I'm trying to add a specified Dash Style (Dot)
This is the code I came up with for that:
AddPlot(Brushes.White, "Ema1");
Plots[0].Width = 1.4F;
Plots[0].Pen.DashStyle = DashStyle.Dot;
After compiling, this is the error message I receive for that code:
System.Windows.Media.DashStyle' does not contain a definition for 'Dot'
Any help would be much appreciated since I'm fairly new to coding.
Thanks in advance

Comment