thanks for rply i add this line SPY,2838,0.5,0.0645,-0.1439,1,0.1,-1,0,0.1,0,SPY/USD at file assefix.csv now appear spy i run my script
function run()
{
set(PARAMETERS+LOGFILE);
BarPeriod = 1440; // Periodo giornaliero

if(day() == MONDAY && hour() == 23 && minute() == 58)
{
// Calcola l'RSI a 2 periodi
vars Price = series(price());
vars RSI2 = series(RSI(Price, 2));

if(RSI2[0] < 30)
{
enterLong(1);
printf("Entered long position");
}
}

if(day() == WEDNESDAY && hour() == 0 && minute() == 5)
{
exitLong(1);
printf("Exited long position");
}
}


but after run i click over button result but showme only a chart with out open and close operation not have simulated nothing , anyone know why ?? thanks again