PureBytes Links
Trading Reference Links
|
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 ( inDaily );
DailyMA = 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: " + NumToStr( eDailyMA, 1.4 );
TIA,
James
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|