PureBytes Links
Trading Reference Links
|
Thanks Graham, but I don't think it will resolve my problem... Let's
say I need to back test my system for the last 30 days (that's I
select in AA window) how can I know what was the High, Low, Close on
August 10? I mean in code. I will still need to find offset between
today and August 10 for the function: TimeFrameGetPrice( "O",
inDaily, ????? ).
Michael
--- In amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxx> wrote:
>
> try timeframegetprice
>
> --
> Cheers
> Graham Kav
> AFL Writing Service
> http://www.aflwriting.com
>
>
> On 15/08/07, mic6399 <mic6399@xxx> wrote:
> > Hi ,
> > If somebody knows how to do it:
> > For back testing, using AA back test I need use High,Low,Close for
> > every day what will be include in my period of back testing. I am
using:
> > TimeFrameSet(inDaily);
> > day_h= LastValue(Ref(H,-1));
> > day_l= LastValue(Ref(L,-1));
> > day_c= LastValue(Ref(C,-1));
> > TimeFrameRestore();
> >
> > But it will calculate High,Low,Close only for the previous
day .How can
> > I dynamically access those values when backtesting? I understand,
that
> > some how I need to find this offset for Ref() function as
difference
> > between Now and Date was I am back testing
> >
> > Thanks
> >
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
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/
|