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

[Scanner] 3 Bars After MA 5 & MA 20 Crossing - IDX for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
scanner, golden cross, amibroker, exploration, moving average

This scanner for you if want to search stocks when 3 bars after MA 5 cross MA 20.
Filter by Volume more than 1.000.000.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("MA CrossOver");
SetSortColumns (-5);

Buy = BarsSince( Cross( MA(Close,5), MA( Close, 20))) <= 2;

AddColumn (O, "Open", 1.0);
AddColumn (Close, "Close", 1.0);
AddColumn ((C-O)/C*100, "Chg. %", 1.2);
AddColumn( Volume/1000000, "Vol. (JT)", 1.2 );

Filter= Buy ==1 AND V>1000000 AND StrLen(Name())==4;

_SECTION_END();

3 comments

1. niklravi

sir
how to trade with this scan? what time frame needs to be used for this scaner?

2. aLdyputRa

Hi.

Im using this scanner using 1D TF.
If MA 5 crossing MA 20, you can buy and vice versa.

3. Nanda57

MANTAP bRO

Leave Comment

Please login here to leave a comment.

Back