How to get Lower Time frame data
How to get 5min volume Ma Data in Daily Timeframe
I'm not able to get the data, it is showing the Current Timeframe data only,
please correct it
_SECTION_BEGIN("5min SMA20 volume>10k");
Sma5minvol= MA(V, Param("5minSMaVol Period", 20, 10, 300));
TimeFrameSet( in5Minute );
TimeFrameExpand(Sma5minvol,in5Minute,expandFirst);
TimeFrameRestore(); // restore time frame to original
GfxSelectFont("Tahoma", 15, 400 );
GfxTextOut(" "+ Sma5minvol, 1600,20);
_SECTION_END();