Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 7 days ago
JSON representation
(BITVAVO)Crypto Trading API implementation in C++ easy to use and to adapt to your specs
- Host: GitHub
- URL: https://github.com/cpplawyer/bitvavo-hft-crypto-trading-api
- Owner: cppLawyer
- License: gpl-3.0
- Created: 2022-04-21T17:06:36.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-17T14:44:49.000Z (over 2 years ago)
- Last Synced: 2025-01-26T17:46:33.744Z (7 days ago)
- Topics: 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
- Language: C++
- Homepage:
- Size: 17.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
}
```