Hi SwinTraderkk,

thanks for the feedback. The quit and return are resulting from a msg command I used instead of the printf.
But even with this code I have no output. I can't believe that I'am stuck at such a simple point.


// Simple Test to output a value

function run()
{
BarPeriod = 15;
LookBack = 150;
StartDate = 20130401;
EndDate = 20130531;
asset("EUR/USD");

vars Price = series(price());

printf("%1.5f\n", Price[0]);
}