PureBytes Links
Trading Reference Links
|
Hello,
It was already written on this list that standard IEEE 32 bit floating point
numbers have 7 significant digits.
In order to generate YYYYMMDD output you would need to declare it in
your regional settings (Windows Control Panel)
and use
AddColumn( DateTime(), "Date", formatDateTime );
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Andrew" <ae_perrin@xxxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, July 19, 2003 4:51 AM
Subject: [amibroker] date format YYYYMMDD
> 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.
>
>
>
>
> 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/
>
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Natural Vitamins for Good Prostate & Male Health. $28.97
http://www.challengerone.com/t/l.asp?cid=2865&lp=prosta2.html
http://us.click.yahoo.com/qJIe0D/89VGAA/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/
|