Skip to main content

FM Exploration for Amibroker (AFL)

Free114 over 14 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 2)
  • Tags:
    trading system, amibroker

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

Indicator / Formula

Copy & Paste Friendly
//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.