×

Sign up and get MultiCharts free

Use its powerful simulation mode with data included out of the box. Just fill out the form and start honing your trading skills with a few clicks.

Changes - MultiCharts

Changes

Jump to navigation Jump to search

Text New bn

1,010 bytes added, 13:20, 16 September 2013
Created page with "Displays a text object, consisting of the specified string expression located at the specified bar and specified price value, on the chart that the study is based on. Text_New..."
Displays a text object, consisting of the specified string expression located at the specified bar and specified price value, on the chart that the study is based on.
Text_New returns an object-specific ID number, required to (further) modify the object.

===Usage===
<syntaxhighlight>
text_new_bn(barnumber, price, text);
</syntaxhighlight>

===Parameters===
* Barnumber – a numerical expression specifying number of the bar at which the object is to be placed;
* Price - a numerical expression specifying the price value (vertical position, corresponding to a value on the price scale of a chart), where the object is to be placed.
* Text - the string expression to be displayed.

===Example===
Place, on the chart that the study is based on, the text "UpT" at the top of a bar number 100 if the Open price has increased incrementally over the last three bars:
<syntaxhighlight>
If Open > Open[1] And Open[1] > Open[2] Then
Value1=Text_New(100, High, "UpT");
</syntaxhighlight>

[[Category: Text Drawing]]

Navigation menu