Skip to main content

Most Simple AFL Buy/Sell Formula for Amibroker (AFL)

kzengfn over 14 years ago Amibroker (AFL)

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

A quick start how to use the AFL scripts to do backtest.

Indicator / Formula

Copy & Paste Friendly
Buy = 	MA(  Close , 8 ) > MA(  Close , 21 );

Sell = 	Close < MA(  Close , 34 );

Short = 	MA(  Close , 8 ) < MA(  Close , 15 );

Cover = 	Close > MA(  Close , 34 );

0 comments

Leave Comment

Please login here to leave a comment.