BinanceFutures.Rest.MarketData.continuous_klines

You're seeing just the function continuous_klines, go back to BinanceFutures.Rest.MarketData module for more information.
Link to this function

continuous_klines(pair, contract_type, interval, start_time \\ nil, end_time \\ nil, limit \\ 500)

View Source

Specs

Gets continuous Kline/candlestick bars for a specific contract type. Klines are uniquely identified by their open time.

Contract types available:

  • PERPETUAL
  • CURRENT_MONTH
  • NEXT_MONTH

Example

iex(1)> BinanceFutures.Rest.MarketData.continuous_klines("BTCUSDT", "PERPETUAL", "5m", nil, nil, 2) {:ok, [

[1616340000000, "57480.91", "57490.00", "57372.26", "57405.05", "571.101",
  1616340299999, "32796220.87635", 9024, "241.532", "13870331.23961", "0"],
[1616340300000, "57405.05", "57430.00", "57350.00", "57385.99", "458.456",
  1616340599999, "26307719.07498", 6574, "198.989", "11419479.03403", "0"]

]}