Class CandlestickData
The Candlestick chart data, each containing the low, open, close, and high values for a series.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class CandlestickData : IDirectResponseSchema
Properties
CloseSeries
The range data (vertical axis) for the close/final value for each candle. This is the top of the candle body. If greater than the open value the candle will be filled. Otherwise the candle will be hollow.
Declaration
[JsonProperty("closeSeries")]
public virtual CandlestickSeries CloseSeries { get; set; }
Property Value
Type | Description |
---|---|
CandlestickSeries |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
HighSeries
The range data (vertical axis) for the high/maximum value for each candle. This is the top of the candle's center line.
Declaration
[JsonProperty("highSeries")]
public virtual CandlestickSeries HighSeries { get; set; }
Property Value
Type | Description |
---|---|
CandlestickSeries |
LowSeries
The range data (vertical axis) for the low/minimum value for each candle. This is the bottom of the candle's center line.
Declaration
[JsonProperty("lowSeries")]
public virtual CandlestickSeries LowSeries { get; set; }
Property Value
Type | Description |
---|---|
CandlestickSeries |
OpenSeries
The range data (vertical axis) for the open/initial value for each candle. This is the bottom of the candle body. If less than the close value the candle will be filled. Otherwise the candle will be hollow.
Declaration
[JsonProperty("openSeries")]
public virtual CandlestickSeries OpenSeries { get; set; }
Property Value
Type | Description |
---|---|
CandlestickSeries |