Hi,
how is it possible to switch from a daily time frame to an intraday time frame, using an MA on the intraday time frame and at least plot the last intraday MA each day on the daily time frame?
I have tried on a daily time frame:
30MinArray=TimeFram eExpand(Foreign( "$XYZ","Close" ),30*60);
MA30Min=MA(30MinArr ay,13);
MA30MinDailyLast= TimeFrameCompres s(MA30Min, inDaily,compress Last);
Plot(MA30MinDailyLa st,"MA 30Min",colorBlue, styleLine) ;
But there is something wrong. The values of MA30MinLast do not fit the EOD values of MA30Min.
Any ideas?
Best wishes,
Daphne