Skip to main content

CCI-ATR indicator for Amibroker (AFL)

Danel almost 16 years ago Amibroker (AFL)

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

Nice overbought and oversold indicators

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("CCI1");
periods = Param( "Periods", 5, 2, 200, 1 );
Plot( CCI( periods ), _DEFAULT_NAME(), ParamColor( "Red",  colorCycle ), ParamStyle("Style")  );
_SECTION_END();

_SECTION_BEGIN("CCI2");
periods = Param( "Periods", 14, 2, 200, 1 );
Plot( CCI( periods ), _DEFAULT_NAME(), ParamColor( "Blue",  colorCycle ), ParamStyle("Style")  );
_SECTION_END();

_SECTION_BEGIN("CCI3");
periods = Param( "Periods", 20, 2, 200, 1 );
Plot( CCI( periods ), _DEFAULT_NAME(), ParamColor( "black",  colorCycle  ), ParamStyle("Style")  );
_SECTION_END();

_SECTION_BEGIN("ATR");
periods = Param( "Periods", 20, 1, 200, 1 );
Plot( ATR(periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.