Hello,
Sorry, I was writing from memory and forgot that DaysSince1900 does not take arguments therefore can not be used for that purpose.
Instead use this:
EnableScript( "JScript" );
<%
function GetDaysTill( y, m, d )
{
msecPerDay = 1000 * 60 * 60 * 24;
dt = new Date( y, m, d, 0, 0, 0 );
today = new Date();
distance = dt.getTime() - today.getTime( );
return Math.floor( distance / msecPerDay );
}
%>
sc = GetScriptObject( );
"Calendar days from today till January 1st, 2010 = " + sc.GetDaysTill( 2010, 1, 1 );
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "sebastiandanconia" <sebastiandanconia@ yahoo.com>
To: <amibroker@xxxxxxxxx ps.com>
Sent: Wednesday, October 21, 2009 5:21 PM
Subject: [amibroker] re: Count calendar days
> (response got mixed up with different poster)
>
> Tomasz said: "You can use DateTimeConvert in conjunction with DaysSince1900. First one will convert from string representing
> date to datetime format and second one will report number of days. By subtracting this and DaysSince1900 of today you will get
> number of calendar days till future date."
>
> Tomasz, you've never yet let me down.:) I'll give that a whirl and post the code when I get it puzzled out.
>
>
> Sebastian
>
>
>
> ------------ --------- --------- ------
>
> **** IMPORTANT PLEASE READ ****
> This group is for the discussion between users only.
> This is *NOT* technical support channel.
>
> TO GET TECHNICAL SUPPORT send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
> http://www.amibroke r.com/feedback/
> (submissions sent via other channels won't be considered)
>
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroke r.com/devlog/
>
> Yahoo! Groups Links
>
>
>