PureBytes Links
Trading Reference Links
|
Thanks
Andrew
--- In amibroker@xxxxxxxxxxxxxxx, "spade_hu" <spade@xxxx> wrote:
> Hello,
>
> Try this:
>
> _N(MyDate= WriteVal( Year(),1.0,0) +WriteIf(Month()>=10,"","0")
> +WriteVal( Month(),1.0)+ WriteIf(Day()>=10,"","0")+WriteVal( Day
> (),1.0) );
>
> AddTextColumn( MyDate,"Date");
>
> Zs.
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Andrew" <ae_perrin@xxxx> wrote:
> > I need to generate a date format in explore of YYYYMMDD. This
only
> > needs to be a number (for export to another program). I've tried
> the
> > following:
> >
> > tDate = DateNum();
> > Filter = 1;
> > AddColumn(tdate+19000000,"",1.0);
> > AddColumn(tdate,"",1.0);
> > AddColumn(Year()*10000+Month()*100+Day(),"",1.0);
> >
> > which gives the results:
> >
> > WYL 11/1/2000 20001100 1001101 20001100
> > WYL 11/2/2000 20001102 1001102 20001102
> > WYL 11/3/2000 20001104 1001103 20001104
> > WYL 11/6/2000 20001106 1001106 20001106
> > WYL 11/7/2000 20001108 1001107 20001108
> >
> > Note the 3rd & 5th column always round number off to even
numbers
> > for some reason that is probably easily explained but is beyond
me?
> > Any Suggestions????
> > Thanks
> > Andrew.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Free shipping on all inkjet cartridge & refill kit orders to US & Canada. Low prices up to 80% off. We have your brand: HP, Epson, Lexmark & more.
http://www.c1tracking.com/l.asp?cid=5510
http://us.click.yahoo.com/GHXcIA/n.WGAA/ySSFAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|