Some examples;
Draw.Arrow*(NinjaScriptBase owner, string tag, bool isAutoScale, int barsAgo, double y, Brush areaBrush, Brush outlineBrush)
Draw.Arrow*(NinjaScriptBase owner, string tag, bool isAutoScale, DateTime time, double y, Brush areaBrush, Brush outlineBrush)
Draw.Arrow*(NinjaScriptBase owner, string tag, bool isAutoScale, int barsAgo, double y, Brush areaBrush, Brush outlineBrush, bool drawOnPricePanel)
Draw.Arrow*((NinjaScriptBase owner, string tag, bool isAutoScale, DateTime time, double y, Brush areaBrush, Brush outlineBrush, bool drawOnPricePanel)
And, since there isn't a way to programmatically create a template, it would be nice to have the isGlobal available with Brushes.
Draw.Arrow*((NinjaScriptBase o wner, string tag, bool isAutoScale, int barsAgo, double y, bool isGlobal, Brush areaBrush, Brush outlineBrush)
Draw.Arrow*((NinjaScriptBase o wner, string tag, bool isAutoScale, DateTime time, double y, bool isGlobal, Brush areaBrush, Brush outlineBrush)
Having access to Brushes means we can create some cool looking indicators and objects
like this... http://screencast.com/t/3gbId5b7xCptThe set of arrows on the left are made programmatically. The arrows on the right I had to make a template and then manually edit the xml file to change the OutlineBrushSerialize. This places limitations on vendors to create unique a cool looking stuff.
Thanks,
Zac

Comment