Skip to main content

MA SECTION for Amibroker (AFL)

Nmd over 1 year ago Amibroker (AFL)

  • Rating:
    0 / 5 (Votes 0)
  • Tags:
_SECTION_BEGIN(“V”);

Plot( Volume, _DEFAULT_NAME(), IIf( C >= O, ParamColor(“Up Color”, colorGreen ), ParamColor(“Down Color”, colorRed ) ), ParamStyle( “Style”, styleHistogram | styleThick, maskHistogram ) );
_SECTION_END();

_SECTION_BEGIN(“MA”);
P = ParamField(“Price field”,-1);
Periods = Param(“Periods”, 15, 2, 300, 1, 10 );
Plot( MA, _DEFAULT_NAME(), ParamColor( “Color”, colorCycle ), ParamStyle(“Style”) );
_SECTION_END();

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

2 comments

Leave Comment

Please login here to leave a comment.