bot in nodejs or python that does copy trade on binance futures
Project detail
I need a bot that listens to a master account in binance and replicate all orders and operations to many “slave” accounts. We need that master/slave communication to be as fast as possible so we don’t lose any time. Binance provides a websocket communication, so we can listen to binance master in a websocket and then replicate to the slaves.
We can have as many slaves as we want, those will be deployed as docker containers, therefore, if a docker container is deployed and up, should connect to the master and be ready to receive events.
Whatever the master do, we should replicate to the slave, we do not touch slave’s orders if not coming from the master (let’s say slave opens a order that did not come from master, we dont touch it).
All configuration in the slave should updatable, we could recreate the container (by passing parameters), slave should be able to report the orders it created in a mongodb instance.