Bittrex C++ API Client Library
WARNING: Market buy/sells are extremely dangerous.You are at your own risk.
cd build ./builder.shsudo make installmake test#include <iostream> #include <libbittrex/client.h> int main(){ std::string key="xxxxx"; std::string secret="xxxxx"; bittrex::Client btxcli(key,secret); auto markets = btxcli.public_api().get_markets(); std::cout << markets.at(0).market_name << std::endl; } >> BTC-LTC