Multiple Time Frame Exploration

Hi
Im trying to write an exploration code that lets me break down weekly and daily signals on a 5 min timeframe exploration. for ex : checking if daily macd > signal every 5 min of a day.
any help would be really appreciated.
the code ive written:

TimeFrameSet(inweekly);
md_15 = TimeFrameCompress(MACD( 12, 26 ),inweekly)> TimeFrameCompress(Signal ( 12, 26, 9 ),inweekly) ;
AddColumn(IIf(md_15,Asc("B"),Asc("S")),"md_W1",formatChar);
TimeFrameRestore();

it is showing the the weekly data upto a few bars from current bar and stopping.
i need to explore for 5 min of over a month data.
any help would be appreciated.