_SECTION_BEGIN("RageeHornerSystem");
COND=C>EMA(H,34);
Plot(EMA(H,34),"EMA34High",colorgreen,styleThick);
Plot(EMA(C,34),"EMA34Close",colorwhite,styleThick);
Plot(EMA(L,34),"EMA34Low",colorRed,styleThick);
Plot(C,"",IIf(Ref(COND,0),colorblue,colorred),64);
Buy=Cross(C,EMA(H,34));
Sell=Cross(EMA(L,34),C);
PlotShapes (IIf(Buy,shapeUpArrow,shapeNone),coloraqua,0,Graph0,-15);
PlotShapes (IIf(Sell,shapeDownArrow,shapeNone),coloryellow,0,Graph0,-15);
Filter=Buy OR Sell;
AddColumn(IIf(Buy,BuyPrice,Null)," Buy Signal ", 6.2,1.2,colorGreen);
AddColumn(IIf(Sell,SellPrice,Null)," Sell Signal ",6.2,1.2,colorOrange);
AddColumn(Close,"Close");
_SECTION_END();