Thanks for writing in.
Yes, my colleague Paul's ChartMarkerPlus script could be used in a NinjaScript indicator.
You could use the methods mentioned in post #11 to draw objects with the ChartMarkerPlus DrawingTool. To see the arguments used for these methods, you could type the method in your script and use Intellisense to see the required arguments when hovering your mouse over the method.
See the sample code below demonstrating drawing a pink dot with a white outline 5 ticks above the close of a bar using DrawPlus.Dotp().
DrawPlus.Dotp(this, "tag1", true, Time[0], Close[0] + 5*TickSize, Brushes.Magenta, 2.5f, Brushes.White);

Comment