Packages

Type-safe Gleam client library for the Upbit cryptocurrency exchange API

Current section

Files

Jump to
glupbit include glupbit@quotation@candle_Candle.hrl
Raw

include/glupbit@quotation@candle_Candle.hrl

-record(candle, {
market :: binary(),
candle_date_time_utc :: binary(),
candle_date_time_kst :: binary(),
opening_price :: float(),
high_price :: float(),
low_price :: float(),
trade_price :: float(),
timestamp :: integer(),
candle_acc_trade_price :: float(),
candle_acc_trade_volume :: float(),
prev_closing_price :: gleam@option:option(float()),
change_price :: gleam@option:option(float()),
change_rate :: gleam@option:option(float()),
converted_trade_price :: gleam@option:option(float()),
unit :: gleam@option:option(integer())
}).