PureBytes Links
Trading Reference Links
|
Thanks Graham
Just what I needed - and, something else learned.
Cheers
Graham
--- In amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxx> wrote:
>
> you can use writeval(vLastBar,1) to write as a normal number string
>
> also better to use vLastDate = LastValue(Datenum()); than array
signifier
>
> vLastBar = LastValue(BarIndex());
> vDate = DateNum();
> vLastDate = LastValue(Datenum());
> vCurrDate = Now(3);
> _TRACE("| LastBar " + writeval(vLastBar,1) + " | LastDate " +
> writeval(vLastDate,1) + " |
> CurrDate " + writeval(vCurrDate),1);
>
>
> --
> Cheers
> Graham Kav
> AFL Writing Service
> http://www.aflwriting.com
>
>
>
> On 17/04/2008, Graham Johnson <grahamj@xxx> wrote:
> > I'm wanting to get the date of the last bar and compare it with
current
> > date - the code below returns {EMPTY} for vLastDate and
1.08042e+006
> > for vCurrDate.
> >
> > vLastBar = LastValue(BarIndex());
> > vDate = DateNum();
> > vLastDate = vDate[vLastBar];
> > vCurrDate = Now(3);
> > _TRACE("| LastBar " + vLastBar + " | LastDate " + vLastDate + " |
> > CurrDate " + vCurrDate);
> >
> > Any suggestions, please.
> >
> > Graham
>
------------------------------------
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/
|