I am not getting the results I am expecting 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 charts
TimeFrameSet
DailyMA = MA (Avg,2);TimeFrameRestore
eDailyMA = TimeFrameExpand( DailyMA, inDaily, expandLast); // expand for
display
Plot
"DailyMA: ""eDailyMA: "
TIA,
James + NumToStr( eDailyMA, 1.4 ); + NumToStr( DailyMA, 1.4 );( eDailyMA,
"Daily Average", ParamColor( "Color", colorCycle ), ParamStyle("Style") );();(
inDaily );