├── CryptoTradingBot.vcxproj ├── CryptoTradingBot.vcxproj.user ├── README.md ├── assets ├── info.txt ├── menu.png ├── work.png └── work2.png ├── inet.h ├── main.cpp ├── tradingbot.cpp └── tradingbot.h /CryptoTradingBot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/CryptoTradingBot.vcxproj -------------------------------------------------------------------------------- /CryptoTradingBot.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/CryptoTradingBot.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/README.md -------------------------------------------------------------------------------- /assets/info.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/assets/menu.png -------------------------------------------------------------------------------- /assets/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/assets/work.png -------------------------------------------------------------------------------- /assets/work2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/assets/work2.png -------------------------------------------------------------------------------- /inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/inet.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/main.cpp -------------------------------------------------------------------------------- /tradingbot.cpp: -------------------------------------------------------------------------------- 1 | #include "tradingbot.h" 2 | -------------------------------------------------------------------------------- /tradingbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfvfaa/trading-bot/HEAD/tradingbot.h --------------------------------------------------------------------------------