Hello,

Any ideas, why I can not read data from file? Export is ok, file created with values.

Code:
function run()
{	
	set(PLOTNOW);
	LookBack = 140;
  	vars Price = series(priceClose());
  	vars Trend = series(EMA(Price,100));
	vars TrendImport = series(0);
	print(TO_CSV,"%.4fn",Trend[0]);
	plot ("Trend", Trend,NEW,BLUE);
	file_read ("Log\WriteAndRead.csv", TrendImport, 0);
	plot ("TrendImport", TrendImport,NEW,RED);
}