Skip to content
This repository was archived by the owner on Aug 21, 2022. It is now read-only.

hillsight/exchange

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hillsight Exchange

This is a library for interacting with supported exchange APIs.

Installation

import { binance, ... } from "https://deno.land/x/hillsight/exchange/mod.ts";

Usage

const exchange = binance({
  api_key: "...",
  secret_key: "...",
})

Read more about the Provider API.

Supported Exchanges

Binance

Credentials

You will be able to get a API key and secret key with the guide from Binance FAQ.

Remember to enable Enable Spot & Margin Trading if you want to perform live trades.

{
  // API key from Binance
  api_key: "...",
  // Secret key from Binance
  secret_key: "...",
}

Options

{
  // No options available
}

Kucoin

Credentials

You will be able to get a API key and secret key with the guide from Kucoin.

Remember to check Trade if you want to perform live trades.

{
  // API key from Kucoin
  api_key: "...",
  // Secret key from Kucoin
  secret_key: "...",
}

Options

{
  // No options available
}

Coinbase

Credentials

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: "...",
}

Options

{
  // No options available
}

Kraken

Credentials

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: "...",
}

Options

{
  // No options available
}

Contributing

Please submit any issues or feature requests using the github issue tracker.

About

Exchange library for Hillsight supported exchanges.

Resources

Stars

Watchers

Forks

Packages

No packages published