CandlestickFieldMap🔗
Definition🔗
class CandlestickFieldMap:
# Corresponds to the starting value of the given period
open_val: typing.Optional[str]
# Corresponds to the highest value of the given period
high: typing.Optional[str]
# Corresponds to the lowest value of the given period
low: typing.Optional[str]
# Corresponds to the final (end) value of the given period
close: typing.Optional[str]
# Corresponds to the sample count in the given period. (e.g. number of trades)
volume: typing.Optional[str]
Methods🔗
to_json🔗
Converts this object into a representation that can easily be encoded to JSON.
from_json🔗
Builds this object from a JSON-decoded dict.