HI,

I trying this code:

Code
 int loadPredict(const string idx, const string TF, const int nHandle){
   string InName = strf("Predikce\\%s_%s_%s.csv",strx(Asset,"/",""),idx,TF);  // name of a single year CSV file
   string Format = "+%t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,i,f";
   int Records = dataParse(nHandle,Format,InName);
    
    
   int i,j;
	for (j=0;j<Records;j++)
	{
		print(TO_LOG,"\n %d",dataInt(nHandle,j,0));
		for (i=0;i<20;i++)
			print(TO_LOG," %f",dataVar(nHandle,j,i));
		print(TO_LOG," %d",dataInt(nHandle,j,ERR_WIN));
		print(TO_LOG," %f",dataVar(nHandle,j,ERR_ACT));
   }
   return Records;    
  }


sample the CSV file ( only 10 rows) is in the end page

but in the LOGFILE I have a different the CSV ( CSV generated by Pandas, no hand )
first 3 row:

raw row csv:
1585771200,-3.83582604,-6.10750127,0.62133097,-0.21221686,4.66838855,10.50491382,13.5382894,8.87178578,5.72651148,2.49663162,-3.30909657,-0.62071651,0.08569986,-2.18775678,-2.43944001,-6.54430676,-4.49616098,-4.27246809,-1.8326776,-1.13982177,393,97.06

read like:
-1431655766 43922.833333 -3.835826 -6.107502 0.621331 -0.212217 4.668388 10.504914 13.538289 8.871786 5.726511 2.496632 -3.309097 -0.620717 0.085700 -2.187757 -2.439440 -6.544307 -4.496161 -4.272468 -1.832678 393 97.059998

raw row csv:
1585770300,-6.96455475,-3.83582604,-6.10750127,0.62133097,-0.21221686,4.66838855,10.50491382,13.5382894,2.13647079,-4.12107038,0.57740384,-2.6419754,-5.39060307,-4.56053495,-8.72499561,-7.84280062,-8.50998688,-6.68159008,-8.08716202,-2.15325022,117,77.3

read like:
1431655766 43922.822917 -6.964555 -3.835826 -6.107502 0.621331 -0.212217 4.668388 10.504914 13.538289 2.136471 -4.121070 0.577404 -2.641975 -5.390603 -4.560535 -8.724996 -7.842801 -8.509987 -6.681590 -8.087162 117 77.300003

raw row csv:
1585769400,-11.98182458,-6.96455475,-3.83582604,-6.10750127,0.62133097,-0.21221686,4.66838855,10.50491382,-6.30167437,-8.49223232,-6.70035887,-13.30095196,-12.5223732,-15.40606594,-13.41799259,-10.03404617,-14.75043106,-12.59232712,-13.87906456,-16.14548302,85,60.52

read like:
0 43922.812500 -11.981825 -6.964555 -3.835826 -6.107502 0.621331 -0.212217 4.668388 10.504914 -6.301674 -8.492232 -6.700359 -13.300952 -12.522373 -15.406066 -13.417993 -10.034046 -14.750431 -12.592327 -13.879065 85 60.520000