Is there within Ninja Script the ability to set the Show/Hide Properties for Price Markers (labels) in a Drawing Tools Script?
If so, can this be applied to all lines for instance via OnStateChange() or better still for a specific lines like in a Fib or multi-line tool?
- PriceLevels.Add(new PriceLevel(50, Brushes.Green,1,DashStyleHelper.Dash,50)); // ... and now set whether to show / hide price/text for this line.
In addition, it there a way to add a specific text comment to a line?
- PriceLevels.Add(new PriceLevel(50, Brushes.Green,1,DashStyleHelper.Dash,50)); // ... Text "50" or "0.5" or "Something Else"
And specify it's location?
- Inside Left, Extreme Left, Inside Right, Extreme Extreme Right, Do Not Show, Above Right, Below Right etc.
All from within the script an not an external template.
Any help especially example code specific to this greatly appreciated.
Thank you.

Comment