Hi guys,

Like the title reads, I'm new to explorations, and AFL in general, and need a 
bit of help getting started.

What I'm looking to do is find when the 12-day MA crosses down the 26-day MA, 
but only when the signal line is above the zero line.

So far I've got:

MSignnal=Signal(12, 26, 9);
Mac1 = MA(Close, 12);
Mac2 = MA(Close, 26);

Filter  =  Cross(Mac2, Mac1) AND MSignnal > 0;
AddColumn( Close, "Close");

But, obviously, it's not working for me.

Any help would be most appreciated.

Thanks,
Conrad


Reply via email to