Quote:Error comes from exchange/wrappers/kraken.js
Ah yes! I was unsure why I was unable to reproduce. 0.6 uses Gekko Broker which has a few breaking changes with the old exchange interface. These changes are:
- Wrappers are now nested different (your error)
- cancelOrder now requires a second parameter to be passed (that indicates whether the order was filled before it was canceled), see here.
- checkOrder now expects an object with a few properties to be returned, see here
- Error handling has gotten a lot more complex, with an updated error interface between a retry system (provided by Gekko) and the exchange wrapper. Read more here.
I am in the process of updating all exchanges, but I haven't gotten around to it yet. See this list for currently supported exchanges. I will commit an error explaining this asap.