I am not getting the results I want using TimeFrameSet. I am putting the
following formula on a 30 minute chart and expecting to see the same values I
would see if I put a 2 day moving average of price field "AVG" on a daily
chart. Could someone explain why I am not getting the same values?
SetFormulaName("Daily Expanded MA");//Daily moving average plotted on shorter
duration chartsTimeFrameSet
DailyMA = ( inDaily );MA(Avg,2);TimeFrameRestore
eDailyMA = ();TimeFrameExpand( DailyMA, inDaily, expandLast); // expand for
display Plot( eDailyMA, "Daily Average", ParamColor( "Color", colorCycle ),
ParamStyle("Style") );"DailyMA: "+ NumToStr( DailyMA, 1.4);"eDailyMA: "
TIA,
James+ NumToStr( eDailyMA, 1.4);