You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Gets candles regarding the last price converted to the target currency for all symbols or for the specified symbols
479
+
480
+
Candles are used for OHLC representation
481
+
482
+
The result contains candles with non-zero volume only (no trades = no candles).
483
+
484
+
Conversion from the symbol quote currency to the target currency is the mean of "best" bid price and "best" ask price in the order book. If there is no "best" bid of ask price, the last price is returned.
485
+
486
+
Requires no API key Access Rights.
487
+
488
+
https://api.exchange.cryptomkt.com/#candles
489
+
490
+
:param target_currency: Target currency for conversion
491
+
:param symbols: Optional. A list of symbol ids. If empty then gets for all symbols
"""Gets candles regarding the last price converted to the target currency for the specified symbols
522
+
523
+
Candles are used for OHLC representation
524
+
525
+
The result contains candles with non-zero volume only (no trades = no candles).
526
+
527
+
Conversion from the symbol quote currency to the target currency is the mean of "best" bid price and "best" ask price in the order book. If there is no "best" bid of ask price, the last price is returned.
528
+
529
+
Requires no API key Access Rights.
530
+
531
+
https://api.exchange.cryptomkt.com/#candles
532
+
533
+
:param target_currency: Target currency for conversion
"""subscribes to a feed of candles regarding the last price converted to the target currency for the specified symbols
173
+
174
+
subscription is only for the specified symbols
175
+
176
+
normal subscriptions have one update message per symbol
177
+
178
+
Conversion from the symbol quote currency to the target currency is the mean of "best" bid price and "best" ask price in the order book. If there is no "best" bid or ask price, the last price is returned.
0 commit comments