BinanceFutures.USDM.MarketData.top_long_short_account_ratio

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

top_long_short_account_ratio(symbol, interval, start_time \\ nil, end_time \\ nil, limit \\ 30)

View Source

Specs

top_long_short_account_ratio(
  binary(),
  BinanceFutures.interval(),
  nil | pos_integer(),
  nil | pos_integer(),
  pos_integer()
) :: {:ok, [map()]} | BinanceFutures.HTTPClient.error()

Gets Top Trader Long/Short Ratio (Accounts).

If startTime and endTime are not sent, the most recent data is returned. Only the data of the latest 30 days is available.

Example

iex(1)> BinanceFutures.USDM.MarketData.top_long_short_account_ratio("BTCUSDT", "5m", nil, nil, 1)
{:ok,
[
  %{
    "longAccount" => "0.7739",
    "longShortRatio" => "3.4228",
    "shortAccount" => "0.2261",
    "symbol" => "BTCUSDT",
    "timestamp" => 1616439000000
  }
]}