Show HN: Cointrol – Bitcoin trading bot written in Python(github.com)
github.com
Show HN: Cointrol – Bitcoin trading bot written in Python
https://github.com/jkbrzt/cointrol
27 comments
I built this bot during the winter of 2013/14. Back then I remember being able to find open source bots only for cross-exchange arbitrage. What I needed was something simple and purely for speculation (plus for Bitstamp). Nowadays the bot scene might be very different, and also BTC price is much more stable.
makaronin(3)
How would you even begin to code such an ambitious undertaking? How do you start? Is there a library that does most of the work?
Cointrol is built for Bitstamp exchange and leverages their REST API [1], so the blockchain-related heavy lifting is done on their end. Besides that, Cointrol relies on a bunch of frameworks (Tornado, Django, Django REST Framework) for DB persistence, HTTP, REST, WebSockets, and such.
[1] https://www.bitstamp.net/api/
[1] https://www.bitstamp.net/api/
“Such an ambitious undertaking”? Not to dismiss the author’s effort at all, but that seems a bit exaggerated.
I am unfamiliar with the bitcoin bot atmosphere but I am guessing it isn't a stretch to assume that other bots exist, what made you decide to write your own?