binapi
binapi copied to clipboard
Binance API C++ implementation
When compiling in debug mode, calling `exchange_info()` fails because `Assertion failed: "bad filterType" == nullptr` It started to happen today. I am not sure on what changes binance made to...
Good afternoon, Is it possible to do a step by step compilation of your solution? I'm from IT I understand the technical terms, but I'm infrastructure oriented, I wanted to...
Thanks for the great repo, I relatively new to C++, coming from python, is there any simple way to implement futures into both websockets and the REST API? Or any...
Hi I've been using your API (which is great by the way) and I noticed you didn't support the symbol order book ticker. https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md#symbol-order-book-ticker
Please add functionality for orderbook building
Thanks for your remarkable work! There are lots of function like new order and cancel order using websocket api. I strongly recommend you to add these functions on websocket api.
The present CMake configuration helps importing binapi as an ExternalProject in an upper layer. The order of includes has been reviewed to respect the generally-admitted standard of "C system, C++...
Is there a way to use this library with C++20 coroutines? Would be nice to just write ```cpp auto [res, ec] = co_await api.account_info(); if(!ec) { std::cout
``` #include #include #include #include #include #include #include #include #include using double_type = boost::multiprecision::number< boost::multiprecision::cpp_dec_float, boost::multiprecision::et_off >; int main() { double_type value1("99999999.27"); std::cout
``` /*! * 它接受一个std::string类型的字符串str和一个指向C风格字符串的指针sep作为参数。 * 函数的目的是将str字符串按照sep指定的分隔符进行分割,并将分割后的子字符串存储在一个std::vector中。 * @param str: 待分割的字符串 * @param sep: 分隔符 * @return: 分隔之后的vector字符串 */ std::vector split_string(const std::string &str, const char *sep) { std::vector res{}; boost::algorithm::split(res, str,...