Hi,
In the daily chart I would like to plot shapeUpArrow / shapeDownArrow indicate weekly MACD cross.
I try this one but it is seems not working .
TimeFrameSet( inWeekly );
Buy = Cross(MACD(), Signal());
TimeFrameRestore();
Sell = 0;
PlotShapes( Buy * shapeUpArrow + Sell * shapeDownArrow, IIf( Buy, colorGreen, colorRed ) );
Thanks for helping.