Binance has a rate limit of 1200 requests per IP per minute.
There will be times that one of my strategies will hit that. As I want to run multiple strategies at the same time I want to use several IP addresses on one system. And then have one node process or node-binance-api use just one specific address. Then next nodejs/node-binace-api process use another IP.
I dont want to use several linux systems as that will increase overhead of management and updating of servers.
So how to do that ?
I save something here about export https_proxy.
So could it be
export https_proxy=http://ip:port
and then use squid ? (not tested)
Binance has a rate limit of 1200 requests per IP per minute.
There will be times that one of my strategies will hit that. As I want to run multiple strategies at the same time I want to use several IP addresses on one system. And then have one node process or node-binance-api use just one specific address. Then next nodejs/node-binace-api process use another IP.
I dont want to use several linux systems as that will increase overhead of management and updating of servers.
So how to do that ?
I save something here about export https_proxy.
So could it be
export https_proxy=http://ip:port
and then use squid ? (not tested)