thnx kalyan
can i combained with macd like macd crossover at 0 level and rsi < 30 vol >100000 pl. help me
Yes you can by ANDing the conditions like -
Cross(MACD(),0) AND (RSI() < 30) AND (V>100000) etc.
However you must think over the logic of the combinations you want to use - like the MACD 0 crossover (specially with the default 12,26 periods) is unlikely when RSI <30 and with ANDing you'll get a TRUE(1) value when ALL the specified conditions are true.
Sometimes you might want to use either-or like Cross(MACD(),0) OR (RSI() < 30). This will return TRUE(1) when either or both the conditions are true (and FALSE(0) when neither is true).
Also make use of the Ami AFL tutorials and Help files to learn more - like how you can add additional columns in your Exploration results using the ADDCOLUMN function.
Regards,
Kalyan.
P.S. If you have any problems with CROSS(MACD(),0) try the following instead
(MACD() > 0 AND REF(MACD(),-1) <=0)