// Downloaded From https://www.WiseStockTrader.com
_SECTION_BEGIN("TRIX");
periods = Param("Periods", 9, 2, 200, 1 );
Plot( Trix( periods ), _DEFAULT_NAME(), ParamColor("color", colorCycle ), ParamStyle("Style") );

PlotShapes(IIf( Trix(periods)>=Ref(Trix(periods),-1)
,69,shapeNone),colorBlue,0,Graph0,-5);

if( Status("action") == actionCommentary )
{
 printf( "(Interpretation is not available yet)" );
}
_SECTION_END();