// Downloaded From https://www.WiseStockTrader.com
//www.aayvu.com buy/sell signals
Plot(C, "Price", colorBlack, styleCandle ); 
su = Study("SU", GetChartID() ); 
re = Study("RE", GetChartID() ); 
PlotOHLC( re,  re,  su, su, "", colorYellow,styleCloud );
Buy = Cross( Close , Study("SU", GetChartID()) );
Sell = Cross( Study( "RE" , GetChartID()), Close );
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
PlotShapes( Buy * shapeUpTriangle + Sell * shapeDownTriangle, IIf( Buy, colorGreen, colorRed ), Offset = -1);