我在ubuntu 16.04上运行zenbot,并根据readme.md安装了它 zenbot基本上是功能性的;我可以回填和模拟而不指定--conf。但是,每当我指定--conf文件(无论是conf.js,conf-sample.js还是任何更改的版本)时,我都会收到错误
$ ./zenbot.sh sim --days 2 --conf ./conf.js gdax.BTC-EUR
/home/xx/GitHub/zenbot/node_modules/codemap/index.js:233
throw err;
^
Error: path `zenbot:exchanges.undefined` is undefined
at Object.get (/home/xx/GitHub/zenbot/node_modules/codemap/index.js:231:19)
at get (/home/xx/GitHub/zenbot/node_modules/codemap/index.js
我无法追溯到问题所在,但很乐意解决这个问题。任何帮助和提示都表示赞赏!
答案 0 :(得分:1)
我今天更新zenbot后面临同样的问题。 Zenbot从2018年1月22日开始运行良好的代码库。我建议尝试检查旧版本并试用它
您可以在下面运行这些命令,这将带您到$http.get旧版本的zenbot。
# git checkout d600b3cd8ae53434646d479fdfef8a718e8bf756
# npm install
当我在参数中提供参数时,此处指向的旧版本适用于我,但是当我提供一个配置文件来读取时,抛出你提到的错误
# ./zenbot.sh sim --conf gdaxbtc.js
zenbot的最新版本(2018年2月3日),在其不稳定的分支中,交换的行为不同。我测试了其中一些。
GDAX现在的行为就像这样
root@kalihost:/opt/zenbot# ./zenbot.sh trade --paper --days 2 gdax.BTC-USD
fetching pre-roll data:
*************************
Hitting up the exchange 'gdax' for trades within the past 1 day.
*************************
Backfilling...
^C
使用BITTREX似乎zenbot试图回填。
# ./zenbot.sh trade --paper --days 2 bittrex.BTC-USDT
fetching pre-roll data:
*************************
Hitting up the exchange 'bittrex' for trades within the past 1 day.
*************************
Backfilling...
please note: the bittrex api does not support backfilling (trade/paper only).
please note: make sure to set the --period_length=1m to make sure data for trade/paper is fetched.
^C
Poloniex似乎工作正常。
# ./zenbot.sh trade --paper
fetching pre-roll data:
*************************
Hitting up the exchange 'poloniex' for trades within the past 1 day.
*************************
Backfilling...
final trade id ==> [undefined]
DATE PRICE DIFF VOL RSI ACTIONS BAL PROFIT
2018-02-03 14:06:00 9412.00 BTC-USDT 9
2018-02-03 14:08:00 9401.00 BTC-USDT -0.12% 16
2018-02-03 14:10:00 9380.00 BTC-USDT -0.23% 6
2018-02-03 14:12:00 9389.12 BTC-USDT +0.09% 1