BinanceFutures
Binance Futures API Elixir implementation.
Installation
- The package can be installed by adding
binance_futuresto your list of dependencies inmix.exs:
def deps do
[
{:binance_futures, "~> 0.1.0"}
]
end- Add
:binance_futuresto your applications list if your Elixir version is 1.3 or lower:
def application do
[applications: [:binance_futures]]
end- Add your Binance API credentials to your
config.exsfile, 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.