Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cpplawyer/bitvavo-hft-crypto-trading-api

(BITVAVO)Crypto Trading API implementation in C++ easy to use and to adapt to your specs
https://github.com/cpplawyer/bitvavo-hft-crypto-trading-api

bitcoin bitvavo bitvavo-trading cplusplus cplusplus-11 cplusplus-17 cplusplus-20 crypto cryptocurrency curl curl-library frequency high high-performance libcurl low-latency openssl openssl-library trading trading-bot

Last synced: about 21 hours ago
JSON representation

(BITVAVO)Crypto Trading API implementation in C++ easy to use and to adapt to your specs

Awesome Lists containing this project

README

        

# Project: Crypto_Trading_api_c++
Project Trading API Implementation in C++

API_DOC_BITVAVO: https://docs.bitvavo.com/.

Adapt to your specifications

- Program uses libCURL and openSSL.
- The program queries the server for the name and price of a cryptocurrency.
- Program has in-built RequestLimit protection so your IP does not get banned by Bitvavo.
- I will add many more features into this project, such as trading and selling with a target, Automatic Trading Bot,
Advanced market indicator and predictor for Binance and other populair platforms. 

EXAMPLE:

```
#include
#include "bitvavo.h"

int main() {

bitvavo bit;

bit.start();

std::cin.get();

bit.stop();

return 0;
}
```