This is a library for interacting with supported exchange APIs.
import { binance, ... } from "https://deno.land/x/hillsight/exchange/mod.ts";const exchange = binance({
api_key: "...",
secret_key: "...",
})Read more about the Provider API.
You will be able to get a API key and secret key with the guide from Binance FAQ.
Remember to enable
Enable Spot & Margin Tradingif you want to perform live trades.
{
// API key from Binance
api_key: "...",
// Secret key from Binance
secret_key: "...",
}{
// No options available
}You will be able to get a API key and secret key with the guide from Kucoin.
Remember to check
Tradeif you want to perform live trades.
{
// API key from Kucoin
api_key: "...",
// Secret key from Kucoin
secret_key: "...",
}{
// No options available
}You will be able to get a API key and secret key with the guide from Coinbase Help.
{
// API key from Coinbase
api_key: "...",
// Secret key from Coinbase
secret_key: "...",
}{
// No options available
}You will be able to get a API key and secret key with the guide from Kraken Support.
{
// API key from Kraken
api_key: "...",
// Secret key from Kraken
secret_key: "...",
}{
// No options available
}Please submit any issues or feature requests using the github issue tracker.