View Source XtbClient.Messages.Candle (XtbClient v0.1.1)
Info representing aggregated price & volume values for candle.
Default interval for one candle is one minute.
parameters
Parameters
openopen price in base currency,highhighest value in the given period in base currency,lowlowest value in the given period in base currency,closeclose price in base currency,volvolume in lots,ctmcandle start time in CET time zone (Central European Time),ctm_stringstring representation of thectmfield,quote_idsource of price, seeXtbClient.Messages.QuoteId,symbolsymbol name.
Link to this section Summary
Link to this section Types
@type t() :: %XtbClient.Messages.Candle{ close: float(), ctm: DateTime.t(), ctm_string: binary(), high: float(), low: float(), open: float(), quote_id: XtbClient.Messages.QuoteId.t(), symbol: binary(), vol: float() }