1. I searched the way to draw smaller dots and found this thread https://ninjatrader.com/support/foru...-a-smaller-dot
So I tried to convert code to NT8.
NinjaTrader.Gui.Tools.SimpleFont myFont = new NinjaTrader.Gui.Tools.SimpleFont("Wingdings 3", 20) { Size = 50, Bold = true };
Draw.Text(this, "myTag"+CurrentBar, true, "p", 0, Low[0], 5, Brushes.Blue, myFont, TextAlignment.Center, Brushes.Black, null, 1);
But It's drawn on indicator panel. How to make it on chart? It doesn't have drawOnPricePanel bool.
And what does "Size = 50" mean? We defined font size "20", right?
2. How to use data series from another custom indicator? I "member it should be done by adding declaration in new indicator.

Comment