-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Getting "GDAX returned an error, retrying..." #1059
Comments
It seems you are importing, could you post your import config? |
// Everything is explained here: var config = {}; // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ config.debug = true; // for additional logging / debugging // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ config.watch = { // see https://gekko.wizb.it/docs/introduction/supported_exchanges.html // You can set your own tickrate (refresh rate). // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ config.tradingAdvisor = { // Exponential Moving Averages settings: // MACD settings: // PPO settings: // Uses one of the momentum indicators but adjusts the thresholds when PPO is bullish or bearish // RSI settings: // TSI settings: // Ultimate Oscillator Settings // CCI Settings // StochRSI settings // custom settings: config['talib-macd'] = { // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // do you want Gekko to simulate the profit of the strategy's own advice? config.performanceAnalyzer = { // Want Gekko to perform real trades on buy or sell advice? config.adviceLogger = { config.pushover = { // want Gekko to send a mail on buy or sell advice? email: '', // Your Gmail address // You don't have to set your password here, if you leave it blank we will ask it password: '', // Your Gmail Password - if not supplied Gekko will prompt on startup. tag: '[GEKKO] ', // Prefix all email subject lines with this
server: 'smtp.gmail.com', // The name of YOUR outbound (SMTP) mail server. config.pushbullet = { config.ircbot = { config.telegrambot = { config.twitter = { config.xmppbot = { config.campfire = { config.redisBeacon = { config.candleWriter = { config.adviceWriter = { // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ config.adapter = 'sqlite'; config.sqlite = { dataDirectory: 'history', dependencies: [] // Postgres adapter example config (please note: requires postgres >= 9.5): // Mongodb adapter, requires mongodb >= 3.3 (no version earlier tested) // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Note that these settings are only used in backtesting mode, see here: config.backtest = { // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ config.importer = { // set this to true if you understand that Gekko will module.exports = config; |
This is the only file I've altered. Poloniex is returning an error also when trying to run the bot. |
Strange, for me it works fine:
When you say:
What exactly are you doing with Gekko? What command are you running etc? |
Odd...so I deleted the folder and pulled a fresh copy from GitHub, copy and pasted my config file and now it seems to be running fine. I'm really not sure what the problem was. |
great stuff! |
Hate to tag onto an old thread, but I'm getting this error on Windows 10...and I did download the ZIP again into a new folder and the manual import still gives me error. The length of records is changing on "Scanning Back", meaning it doesn't fail import command line in the same place each time. It fails in the UI too. I'm attaching the screenshots |
@Dedicated62 unless I'm completly mistaken, this is in no way related to the issue described here. YOu should rather open a new issue. |
Note: for support questions, please join our Discord server
I'm submitting a ...
[X] bug report
[ ] feature request
[ ] question about the decisions made in the repository
Action taken (what you did)
Bot was working perfectly fine on GDAX through the terminal interface and made absolutely no changes. Was processing trades correctly and gathering history from GDAX before initiating. Now, when I launch the bot it displays an error while trying to gather GDAX history.
Expected result (what you hoped would happen)
Should gather GDAX history and then proceed to trade.
Actual result (unexpected outcome)
2017-08-31 20:17:26 (DEBUG): Scanning back in the history needed...
2017-08-31 20:17:26 (DEBUG): 2017-09-01T00:17:00+00:00
2017-08-31 20:17:27 (DEBUG): GDAX returned an error, retrying..
This simply continues to repeat over and over again for hours upon hours without ever successfully working.
The text was updated successfully, but these errors were encountered: