I put the quandl api key into the ini file. My assets file reads as follows:

Quote:
Name,Price,Spread,RollLong,RollShort,PIP,PIPCost,MarginCost,Leverage,LotAmount,Commission,Symbol
NVDA,50,0.1,0,0,0.01,0.01,0,2,1,0.02,QUANDL:NVDA


Now I try to use the following code to download data

Quote:
function run()
{
assetList("History\assets.csv"); // load asset list
while(loop(Assets))
assetHistory(Loop1,FROM_QUANDL);
quit();
}


However, Zorro complains:



And the "history.csv" file shows the following response from QUANDL

Quote:
code,message

QECx05,The url you requested is incorrect. Please use the following url instead: /api/v3/datasets/:database_code/:dataset_code.


What do I do wrong? How can I fix this?