While debugging, this simple code plots nothing and I don't know why.
Why this happens. It is complied.

Code:
int trendPeriod = 1;


function run(){
	
  set(TICKS);

 
 
 vars ma = series(EMA(priceClose(),trendPeriod));
 

 
plot("Signal", ma[0], 0, RED);


}


Last edited by SFF; 03/06/13 11:48.