Show / Hide Table of Contents

Class CandlestickData

The Candlestick chart data, each containing the low, open, close, and high values for a series.

Inheritance
object
CandlestickData
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX