Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

MACD cross over signal for Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker, exploration

This is a simple code to filter stocks that have MACD cross its signal line.
Cos MACD is a slow indicator, i often use this to search for weekly signal that
give a mid and long-term trend.
Note: I just start to use Amibroker and this simple code is given to me by my friend.

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 11 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk over 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
Vol Peak 5 Day [Scan only]
Submitted by lusmomoney over 10 years ago
TEMA_Regression Crossover
Submitted by marcheur over 10 years ago

Indicator / Formula

Copy & Paste Friendly
r1 = Param( "Fast avg", 12, 2, 200, 1 );
r2 = Param( "Slow avg", 26, 2, 200, 1 );
r3 = Param( "Signal avg", 9, 2, 200, 1 );

m1=MACD(r1,r2);
s1=Signal(r1,r2,r3);
a=Cross(m1,s1);
Filter = a>0;

AddColumn(C,"Close",1.2);
AddColumn(V,"Volume",1.2);

0 comments

Leave Comment

Please login here to leave a comment.

Back