PureBytes Links
Trading Reference Links
|
Arthur,
it looks like the output from Datenum(), so 1021202 would be
2-December-2002
Break it up like this
yyymmdd
and add 1900 to the yyy.
>From my snippets file
// Convert DateNum to Day, Month, Year
dn = DateNum();
DD = dn%100;
MM = int(dn/100)%100;
YYYY = 1900 + int(dn/10000);
// Convert Day,Month, Year to DateNum
dn = (YYYY-1900)*10000 + MM*100 + DD;
--
Nigel
On Thu, 3 Apr 2003 07:44 am, arthur sawilejskij wrote:
> --- In amibroker@xxxxxxxxxxxxxxx, "Steve Dugas" <sjdugas@xxxx> wrote:
> > Hi Everybody,
> >
> > I uploaded a couple of files tonight. The first is a zip file that
>
> contains a DLL, a help file, and AFL code for self optimizing version
> of about 25 buit-in AB indicators. I have attached a couple of
> pictures so you can see what they look like.
>
> > While I was at it, I figured I would also post the color chart I
>
> made a while back, in case any of the newer members might find it
> useful. It is helpful for picking colors for your indicators because
> you can see and identify a sample of all colors against your
> background. Happy trading!
>
> > Steve
>
> Thanks for that - I'm just starting to have a play with them now.
>
> Now this might seem dumb - but in OZ we have different format for
> entering dates - and I can't for the hell of me figure out what date
> 1021202 that is used in the afl's is?
>
> How is the date expressed?
>
> Arthur
>
>
>
>
>
> 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 ---------------------~-->
Save Smiley. Help put Messenger back in the office.
http://us.click.yahoo.com/4PqtEC/anyFAA/i5gGAA/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/
|