BinanceFutures.USDM.MarketData.exchange_info

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

Specs

exchange_info() :: {:ok, map()} | BinanceFutures.HTTPClient.error()

Gets current exchange trading rules and symbol information.

Example

iex(1)> BinanceFutures.USDM.MarketData.exchange_info
{:ok,
  %{
    "exchangeFilters" => [],
    "futuresType" => "U_MARGINED",
    "rateLimits" => [
      %{
        "interval" => "MINUTE",
        "intervalNum" => 1,
        "limit" => 2400,
        "rateLimitType" => "REQUEST_WEIGHT"
      },
      %{
        "interval" => "MINUTE",
        "intervalNum" => 1,
        "limit" => 1200,
        "rateLimitType" => "ORDERS"
      },
      %{
        "interval" => "SECOND",
        "intervalNum" => 10,
        "limit" => 300,
        "rateLimitType" => "ORDERS"
      }
    ],
    "serverTime" => 1616348890107,
    ...
    "timezone" => "UTC"
}}