DrawnOnBar

View as Markdown

Definition

Gets the current bar value that the chart anchor is drawn by a NinjaScript object. Please see the Drawing section for more information.

This value will NOT work on manually drawn objects. This property is reserved for chart anchors which were drawn by another NinjaScript object (e.g., using a Draw method in an indicator). For manually drawn objects, please see the SlotIndex property.

Property Value

A int value that value which the current bar the chart anchor is drawn. This property is read-only.

Syntax

\<chartanchor\>.DrawnOnBar

Examples

1// Places text if high is 2419 and prints what bar the text was drawn on
2if (High[0] == 2419)
3{
4 Text myText = Draw.Text(this, @"Text " + CurrentBar, @"High is 2419" , 0, High[0]);
5 Print("Text is on bar " + myText.Anchor.DrawnOnBar);
6}