golang-crypto-trading-bot
golang-crypto-trading-bot copied to clipboard
A golang implementation of a console-based trading bot for cryptocurrency exchanges
Where exactly do I need to handle the update function? Do you simply do it in binance.go for example in subscribeMarketSummaryFeed?
I have configured a yaml file like the following: ``` simulation_mode: true exchange_configs: - exchange: binance public_key: aaa secret_key: bbb deposit_addresses: {} fake_balances: USDT: 35 strategies: - strategy: prueba markets:...
The bot should be able to know order status (eg. if an order is still open or is closed)
https://www.bitmex.com/api/explorer/ Go Wrappers : - https://github.com/BitMEX/api-connectors/tree/master/auto-generated/go - https://github.com/qct/bitmex-go - https://github.com/santacruz123/bitmex-go
It should be possible to attach a logger to the bot
this would be supported only on websocket mode, since polling would bring 429 error almost immediatly (assuming cap = 60 req/min, which is what most exchanges have as rate limit)
http://docs.coinigy.apiary.io/ This will allow the bot to work with many exchanges with only a single interface. The title is very self-explanatory - take their 30 day trial and see if...