Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
[Scanner] 3 Bars After MA 5 & MA 20 Crossing - IDX for Amibroker (AFL)
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
1 2 3 4 5 6 7 8 9 10 11 12 13 | _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
Leave Comment
Please login here to leave a comment.
Back
sir
how to trade with this scan? what time frame needs to be used for this scaner?
Hi.
Im using this scanner using 1D TF.
If MA 5 crossing MA 20, you can buy and vice versa.
MANTAP bRO