Kline
The Kline type represents a K-line, more commonly known in the financial world as a candlestick chart.
interface Kline {
start_ts: number;
end_ts: number;
opening_price: string;
closing_price: string;
highest_price: string;
lowest_price: string;
volume: string;
}Properties
start_ts: numberThe start timestamp of a candlestick.
end_ts: numberThe end timestamp of a candlestick.
opening_price: stringThe opening price of an asset for the trading period.
closing_price: stringThe closing price of an asset for the trading period.
highest_price: stringThe highest price of an asset for the trading period.
lowest_price: stringThe lowest price of an asset for the trading period.
volume: stringThe volume of an asset traded during the trading period.
Last updated