BinanceFutures

Binance Futures API Elixir implementation.

Installation

  1. The package can be installed by adding binance_futures to your list of dependencies in mix.exs:
def deps do
  [
    {:binance_futures, "~> 0.1.0"}
  ]
end
  1. Add :binance_futures to your applications list if your Elixir version is 1.3 or lower:
def application do
  [applications: [:binance_futures]]
end
  1. Add your Binance API credentials to your config.exs file, like so (you can create a new API key here):
config :binance,
  api_key: "xxx",
  secret_key: "xxx"

Usage

TBD.

Documentation can be found at https://hexdocs.pm/binance_futures.