Hi All,

Hoping someone can help me out here.

I'm trying to change my Buy/Sell symbols on a plot to Trianlg e and TriangleDown, but can't find how to implememnt the option.

Currently, my code looks like this:

Chart plotter = new Chart("EMA:" + Symbol); plotter.AddSeries(new Series(Symbol, SeriesType.Line, index:0)); plotter.AddSeries(new Series("Buy", SeriesType.Scatter, index:0)); plotter.AddSeries(new Series("Sell", SeriesType.Scatter, index:0));

Where/how do I add the 

ScatterMarkerSymbol.Triangle

Thanks

 

Author