Defines the candlestick style for the TRSCandleStickChart
Namespace: RSChartConsts
Delphi
|
type
TCandleStickStyle = (
csCandleStick,
csCandleStickHighLow,
csCandleStickHighLowCaps,
csCandleLine,
csCandleStickAvg,
csCandleStickHighLowAvg,
csCandleStickHighLowCapsAvg,
csCandleLineAvg);
|
|
Name
|
Description
|
|
csCandleLine
|
Draw candle stick as vertical line with horizontal lines for the Open and Close values
|
|
csCandleLineAvg
|
Draw candle stick as vertical line with horizontal lines for the Open and Close values, and draws average line
|
|
csCandleStick
|
Draw candle stick as a vertical bar from Open to Close
|
|
csCandleStickAvg
|
Draw candle stick as a vertical bar from Open to Close and draws average line
|
|
csCandleStickHighLow
|
Draw candle stick as a vertical bar from Open to Close
and with High and Low sticks
|
|
csCandleStickHighLowAvg
|
Draw candle stick as a vertical bar from Open to Close
and with High and Low sticks, and draws average line
|
|
csCandleStickHighLowCaps
|
Draw candle stick as a vertical bar from Open to Close
and with High and Low caps
|
|
csCandleStickHighLowCapsAvg
|
Draw candle stick as a vertical bar from Open to Close
and with High and Low caps, and draws average line
|
Top
|