Skip to main content

Swing Pullbacks for Amibroker (AFL)

na1982 over 16 years ago Amibroker (AFL)

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

Swing Pullbacks buy signal.

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("SwingPullbacks");
function PercentR( periods ){
 return -100*( HHV(H, periods) - C) / (HHV(H, periods) - LLV(L, periods)); 
}
Buy = (  (C>50 AND V > 100000) 
	AND ( C < MA(C,10) AND C > EMA(C,30) )  
	AND ( ADX(14)>30 ) AND (PercentR(3) < -80) );
_SECTION_END();

5 comments

Leave Comment

Please login here to leave a comment.