MACD/RSI Signal Cross for Amibroker (AFL)
GekkoBroker over 15 years ago Amibroker (AFL)
System will generate a buy signal when
occurs at least one of the signals:
The confluence of the MACD line SIGNAL
The confluence of the RSI line 30
volume is larger than 100000 (you can change the volume for your needs by inserting a different value)
Indicator / Formula
Copy & Paste Friendly
//system:
Buy = (Cross( MACD(), Signal() ) OR Cross( RSI(), 30 )) AND Volume > 100000;
//exploration
Filter = Buy;
AddColumn( Buy, "Buy", 1);
AddColumn( Volume, "Volume", 1);
AddColumn( Cross( MACD(), Signal() ), "MACD/Signal cross", 1);
AddColumn( Cross( RSI(), 30 ), "RSI / 30 cross", 1);2 comments
Leave Comment
Please login here to leave a comment.
Good exploration.. MUST C
this afl supports my individual trading system..great sharing bro..Gekko..keep it up