Skip to main content

CCI System for Amibroker (AFL)

sandipsc about 16 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 1)
  • Tags:
    trading system, amibroker, optimize

Very simple bare bones CCI system with optimized levels.

Indicator / Formula

Copy & Paste Friendly
per = Optimize("per", 2, 5, 50, 1 ); 
Level = Optimize("level", 2, 2, 150, 4 ); 

Buy=Cross( CCI(per), -Level ); 
Sell = Cross( Level, CCI(per) ); 

2 comments

Leave Comment

Please login here to leave a comment.