Documentation / Graphical

DRAWPOINT

ProRealTime v11

Draws a point on the chart.

Syntax:

where “x” is the Barindex, “y” the price or the vertical axis value.

“size” (optional) is the size of the point to be drawn, max size is 5.

(more…)

DRAWRAY

ProRealTime v11

Plots a segment that can expand to the right or to the left of the chart.

The second coordinates (x2 and y2) will be used to know in which direction the segment expand.

Syntax:

(more…)

DRAWRECTANGLE

ProRealTime v10.3

Draw a rectangle on chart with 2 set of x,y coordinates.

Syntax:

Coloured is optional.

(more…)

DRAWSEGMENT

ProRealTime v10.3

Draw a line segment between 2 x,y coordinates on chart.

Syntax:

Coloured is optional.

(more…)

DRAWTEXT

ProRealTime v10.3

Graphical instruction to draw text on chart.

Syntax:

“text” as a string value, which must be in quotation marks, just like the example below.

x1 as a barindex, y1 as the price or the vertical axis value.

Variables values can also be drawn on chart, they must be surrounded by pound symbols : “#myvariable#”. See example 3 below.

(more…)

DRAWTRIANGLE

ProRealTime v10.3

Draw a triangle on chart with 3 sets of x,y coordinates.

Syntax:

Coloured is optional.

(more…)

DRAWVLINE

ProRealTime v10.3

Draw a vertical line on chart with barindex coordinate.

Syntax:

Coloured is optional.

(more…)

The FILLCOLOR function is used to fill an object’s content using RGB format

(more…)

STYLE

ProRealTime v10.3

The “STYLE” keyword defines the styles of any returned values of an indicator. It is intended to styling programmatically instead of do it manually in the indicator window.

This keyword is located right after the optional keyword “COLOURED” and before the “AS” one.

Syntax:

Styling options available :

  • LINE : draw plain continuous line (default style)
  • DOTTEDLINE : draw a dotted line
  • DOTTEDLINE1: draw a dotted line with a different style (see below)
  • DOTTEDLINE2: draw a dotted line with a different style (see below)
  • DOTTEDLINE3: draw a dotted line with a different style (see below)
  • DOTTEDLINE4: draw a dotted line with a different style (see below)
  • HISTOGRAM : draw an histogram
  • POINT : draw a point series

(more…)


Top