AFL Help

#3
can any one help in AFL code from the bellow Meta stock code :

(Ref(C,-1)>Ref(Mov(C,13,S),-1)){Previous close greater than 13SMA}
AND ((Ref(C,-1)<Ref(C,-2))) {the close of yesterday is greater than
the close of the day before}
AND (H> O+ (( Ref(H,-1)-Ref(L,-1))*.55))){today’s high is greater
than today’s opening plus 55% of yesterday’s range}
(Ref(C,-1)<Ref(Mov(C,13,S),-1)){Close less than 13SMA}
AND ((Ref(C,-1)>Ref(C,-2))){ previous close greater than the close of day before}
AND (L< O- (( Ref(H,-1)-Ref(L,-1))*.55))){low of today less than
today's open minus 55% of yesterday's range}

The system so far –Buys •
Prices need to be above 13SMA •
Today’s close < Yesterday’s Close •
Range = yesterday’s high – yesterday’s low •
Breakout Filter = 55% of Range •
Entry price = Open of today + Breakout Filter
 

Similar threads