Hi,

I have multiple scripts to download some data from Quandl and all of them stopped working with the same error:

Error 058: Bad date for 'QECx02,You' in CFTC-TIFF_CME_SP_ALL

Here is the simple script:

Quote

#include <contract.c>

// COT report for S&P500
var CFTC_SP(int Column) {
return dataFromQuandl(802,"%Y-%m-%d,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f","CFTC/TIFF_CME_SP_ALL",Column);
}


void main()
{
if(!is(SPONSORED))
{
printf("Need Zorro S this strategy!");
return;
}
}

function run()
{
StartDate = 2019;
EndDate = 2020;
BarPeriod = 1440; //Daily
LookBack = 12*20;
set(PLOTNOW);

var mydata = CFTC_SP(2);
}


Also all the examples in the zorro documentation using dataFromQuandl does not work. Could you fix it please?

Thank you!


Last edited by pablomfz; 12/03/20 18:43.