Thread: Moving Average
View Single Post
  #50 (permalink)  
Old 09-26-2006, 11:22 AM
bigmo bigmo is offline
Junior Member
 
Join Date: Sep 2006
Posts: 5
bigmo is on a distinguished road
extern int ShortPeriod = 5;
extern int ShortPeriodMode = 1; //0=sma, 1=ema, 2=smma, 3=lwma
extern int BigPeriod = 50;
extern int BigPeriodMode = 1; //0=sma, 1=ema, 2=smma, 3=lwma
extern int ExitPeriod = 20;
extern int ExitPeriodMode = 1; //0=sma, 1=ema, 2=smma, 3=lwma

I got this, do i just change the 5 to 8 .

Will this give me an alert when the 8 ema crosses the 50 ema. And then when the 8 ema crosses the 20 or 21 ema?

What type of alert is it, popup, noise, email or what?
Reply With Quote