IChart.WickOffset

Syntax

WickOffset: Double;

Description

The WickOffset property determines offset of fluctuation interval markers relative to a bar.

Comments

This property is used only for charts of the Histogram with Fluctuation Interval type. Available values are within the range [-0.5; 0.5].

Example

This example assumes that there is the Chart object of the IChart type. The chart must be of the Histogram with Fluctuation Interval type. To transform a chart into this type, execute the command:

Chart.Type := ChartType.Candle;

Sub User;
Var
    Chart : IChart;
Begin
    Chart.WickOffset := 0.3;
End Sub User;

After executing the example markers of fluctuation interval are shifted from the bar center to the specified distance.

See also:

IChart