Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
FM Exploration for Amibroker (AFL)
FM exploration
This is a simple code exploration only.
It look for a swing in a trend with
volume activity and candle cross.
Price swing : 10Ma is under 35Ma
Trend : 50Ma is above the 100Ma
Volume : Volume is above 35 Ma
Trigger : Candel cross 5Ma
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | //System FM 1.5 // This is an exploration only. It look for a swing in a trend with // volume activity and candle cross. // Price swing : 10Ma is under 35Ma // Trend : 50Ma is above the 100Ma // Volume : Volume is above 35 Ma // Trigger : Candel cross 5Ma TimeFrameSet ( inDaily ); ( MA ( C , 35)); ( MA ( C , 50)); ( MA ( C , 10)); ( MA ( C , 100)); Cross ( C , MA ( Close , 5 ) ); Buy = ( MA ( C , 35)) > ( MA ( C , 10)) AND ( MA ( C , 50)) > ( MA ( C , 100)) AND ( V > MA ( V ,35)) AND ( Cross ( C , MA ( Close , 5 ) )) ; |
2 comments
Leave Comment
Please login here to leave a comment.
Back
its not working
This is a scan only.