Skip to main content

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

aLdyputRa about 5 years ago 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

about 5 years ago

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

about 5 years ago

Hi.

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

Leave Comment

Please login here to leave a comment.