PureBytes Links
Trading Reference Links
|
I also just found TimeFrameGetPrice(), which allows me to do what I was trying to use all the time frame stuff for. Hope it works!
--- In amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxx> wrote:
>
> The expandlast higher timeframe requires the next timeframe period to
> have started to produce a result at the last bar of the current
> timeframe period. ie it does not know that the current timeframe day
> has finished until a new day start.
> If you try expandfirst instead you should get the same results
>
> --
> Cheers
> Graham Kav
> AFL Writing Service
> http://www.aflwriting.com
>
>
>
> 2009/6/10 James <jamesmemphis@xxx>:
> >
> >
> > 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/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|