Skip to content

intelligences/HitBTC.Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Icon HitBTC.Net

Build status

HitBTC.Net is a .Net wrapper for the HitBTC API as described on HitBTC. It includes all features the API provides using clear and readable C# objects including

  • Reading market info
  • Placing and managing orders
  • Reading balances

Additionally it adds some convenience features like:

  • Access to the websocket, allowing for realtime updates
  • Configurable rate limiting
  • Autmatic logging

If you think something is broken, something is missing or have any questions, please open an Issue

CryptoExchange.Net

Implementation is build upon the CryptoExchange.Net library, make sure to also check out the documentation on that: docs

Other CryptoExchange.Net implementations:


Bittrex

Bitfinex

Binance

CoinEx

Huobi

Kucoin

Kraken
Implementations from third parties:

Switcheo

Liquid

OKEx

Bitmex

HitBTC

Exante

Installation

Nuget version Nuget downloads

Available on NuGet:

PM> Install-Package HitBTC_Net

To get started with HitBTC_Net first you will need to get the library itself. The easiest way to do this is to install the package into your project using NuGet. Using Visual Studio this can be done in two ways.

Using the package manager

In Visual Studio right click on your solution and select 'Manage NuGet Packages for solution...'. A screen will appear which initially shows the currently installed packages. In the top bit select 'Browse'. This will let you download net package from the NuGet server. In the search box type 'HitBTC_Net' and hit enter. The HitBTC_Net package should come up in the results. After selecting the package you can then on the right hand side select in which projects in your solution the package should install. After you've selected all project you wish to install and use HitBTC_Net in hit 'Install' and the package will be downloaded and added to you projects.

Using the package manager console

In Visual Studio in the top menu select 'Tools' -> 'NuGet Package Manager' -> 'Package Manager Console'. This should open up a command line interface. On top of the interface there is a dropdown menu where you can select the Default Project. This is the project that HitBTC_Net will be installed in. After selecting the correct project type Install-Package HitBTC_Net in the command line interface. This should install the latest version of the package in your project.

After doing either of above steps you should now be ready to actually start using HitBTC_Net.

Getting started

To get started we have to add the HitBTC.Net namespace: using HitBTC.Net;.

Release notes

  • Version 1.0.1.4 - 17 july 2020
    • Release version 1.0.1.4