You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
i let run the code for a full day and it does not buy or sell ETH.
I did not change any line of code except the api key and api secret.
I can see in the python output console, the code is running and get data every 2 seconds.
i see when the candle is closed etc but nothing is happening.
Also i'm trying from Canada.
Thank you
The text was updated successfully, but these errors were encountered:
same, I get RSI values, but when overbought or undersold value, the conditionals don't print ("Buy buy buy"!) or execute the trade.. It just moves onto the next loop cycle
What I did was trying to know how the code is working. So I discovered that it works lazy because the code expects len(closes) be greater than the RSI_PERIOD which is 14.
Try to debug it adding
print("len closes")
print(len(closes))
And waits for closes array length be greater than the RSI_PERIOD. After that your bot will be able to calculate the LAST_RSI.
Also try to change the RSI_OVERBOUGHT = 60 and RSI_OVERSOLD = 40 because of the Binance API high latency from their servers to your machine. I figure out that it could take imprecise calculations from the real time websocket. Making some difference from the Binance's graphs and my bot.
Hi,
i let run the code for a full day and it does not buy or sell ETH.
I did not change any line of code except the api key and api secret.
I can see in the python output console, the code is running and get data every 2 seconds.
i see when the candle is closed etc but nothing is happening.
Also i'm trying from Canada.
Thank you
The text was updated successfully, but these errors were encountered: