Hey,

I previously used both the Binance and Coinbase plugins to fetch both M1 and EOD data directly through Zorro.

However, I'm having issues doing the same through the Kraken one which I plan to use due to its support for SET_LEVERAGE.

I'm wondering what I'm doing wrong with this script:

Code
function main() 
{
	
	
	StartDate = 2021;
	EndDate = 2022;
	Verbose = 7|DIAG;

	assetHistory("ETH/USD",1);
	
}


getting the following output

Code

DownloadKraken compiling........... ok
!Kraken Plugin, version: 1.0.1.3
!Logging in...
!Loading Kraken asset info...
!Loading Kraken tradable pair info...
!REST server status: online
!Getting currency balances...
!Getting websocket token...
!Websocket connected to wss://ws.kraken.com/
!Websocket connected to wss://ws-auth.kraken.com/
!Kraken server version: 1.8.8, status: online
!Kraken server version: 1.8.8, status: online at UTC 03-06 08:13
!ETH/USD 03-06 08:11:00 to 03-06 08:13:38 failed
!ETH/USD 03-06 08:11:00 to 03-06 08:12:38 failed.
!ETH/USD 01-01 00:00:00 to 12-31 23:59:59 failed
!ETH/USD 01-01 00:00:00 to 12-31 23:58:59 failed
!ETH/USD 01-01 00:00:00 to 12-31 23:57:59 failed
!ETH/USD 01-01 00:00:00 to 12-31 23:56:59 failed
!ETH/USD 01-01 00:00:00 to 12-31 23:55:59 failed
!ETH/USD 01-01 00:00:00 to 12-31 23:54:59 failed
!ETH/USD 01-01 00:00:00 to 12-31 23:53:59 failed - ETH/USD history unavailable!
Error 056: Can't download ETH/USD 2021 history
Logout..
!Logging out... ok



using the assets given in the manual:

Code
Name,Price,Spread,RollLong,RollShort,PIP,PIPCost,MarginCost,Leverage,LotAmount,Commission,Symbol
BCH/ETH,0.53794,0.0001,0,0,0.0001,0.0001,0,1,0.00001,-0.25,
ETH/USD,450.2,0.01,0,0,0.01,0.01,0,1,0.00001,-0.25,
ETH/XBT,0.0292241,0.00001,0,0,0.00001,0.00001,0,1,0.00001,-0.25,
LTC/ETH,0.13093,0.00001,0,0,0.00001,0.00001,0,1,0.00001,-0.25,
LTC/USD,179,0.01,0,0,0.01,0.01,0,1,0.00001,-0.25,
LTC/XBT,0.003834,0.000001,0,0,0.000001,0.000001,0,1,0.00001,-0.25,
XBT/USD,44785.8,3.3,0,0,0.01,0.01,0,1,0.00001,-0.25,



Any thoughts on what went wrong?