Skip to main content

Advanced MA system for Amibroker (AFL)

kazul about 16 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 3)
  • Tags:
    trading system, amibroker, exploration, moving average

This fomular of KingK. you can see http://www.amibroker.com/library/detail.php?id=925. He has tried hard for this and it gives very good results in the Greek Stock Market.

You cannot view the code for the following reasons:
  • The indicator has not yet been approved by the Administrator.

4 comments

almost 15 years ago

Amazing system…all should try with 15 min for intraday and positional for hourly basis

4. owied
over 8 years ago

good system
If you want to show the candlestick char

_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g,
Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleLine); 
_SECTION_END();

change line to candle
Or put this line
Plot( C, "Close", colorBlack , styleCandle);

Leave Comment

Please login here to leave a comment.