Help needed in plotting buy sell arrows. Bias 24 Crossing 0 line.
Regards
Debashish
Regards
Debashish
Replace the 4 lines
Code:
Buy = Cross(b3, b4);
Sell = Cross(b4, b3) ;
PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen,0,b4,-20);
PlotShapes(IIf(Sell==1, shapeDownArrow, shapeNone), colorRed,0,b4,-20);
Happy