Open feydreva opened 3 years ago
this proxy does not fully proxy everything
if you start 4 bots at once then it will bypass the volume queries 4x (volumepairlist) and hence IP ban you.
you will have to delay the startups of your bots for that. dont ever start more than 2 bots within the same minute to be safe. I went to the 1m / bot approach even to never ever have issues then.
how can I add a delay in between my service on my docker compose file ? is there a way to put a 2 min delay before it starts the next one ?
Also it is strange it only "bug" after 10 days and not at the start.
[ "$SLEEP" ] && sleep $SLEEP
freqtrade $@
freqtrade1: environment: SLEEP: "1" build: context: . dockerfile: "Dockerfile"
FROM freqtradeorg/freqtrade:stable
USER root
RUN pip install pandas_ta
COPY wait.sh wait.sh RUN chmod +x wait.sh
USER ftuser
ENTRYPOINT ["/bin/bash", "./wait.sh"]
hello, I don't think it s an issue, but i don't understand why thats happening. I have 4 bots running behind binance_proxy
configured like this on the config file
but since yesterday, I get error message on all 4 FT instances :
I thought the proxy was using websocket to get its market update. So i m not sure why this happens.
any idea ???