Hello,
The code is as follows
function DateNumToStr( dn )
{
return WriteIf( dn >= 1000000, "20", "19" ) + StrFormat("%06.0f", dn % 1000000 );
}
dn = DateNum();
bdn = BeginValue( dn );
edn = EndValue( dn );
if( edn == LastValue( dn ) &&
bdn == dn[ 0 ] )
{
printf("no range selected");
}
else
{
begstr = DateNumToStr( bdn );
endstr = DateNumToStr( edn );
printf( begstr + "\n" );
printf( endstr + "\n" );
}
Best regards,
Tomasz Janeczko
amibroker.com
Friends,
For my requirement, I need to create an Array which holds the date in YYYYMMDD format and that array is then Converted to STRING.
I want two dates, one is Beginnig by the Range Marker and another one is Ending by the Range Marker.
Tried varies ways, but finding it challenging based on my AFL capabilities.
Dayarray= Day();
monarray = Month();
Yeararray = Year();
bi = BarIndex();
eb = Nz(EndValue( BarIndex() ));
bb = Nz(BeginValue( BarIndex() )) ;
mon_two_digit = iif((strlen(numtostr(monarray))) == 1, "0"+monarray, monarray);
day_two_digit = iif((strlen(numtostr(dayarray))) == 1, "0"+dayarray, dayarray);
// Reason why I do above is, DAY() and MONTH() gives Single digit day / month for say day 5 / month 7 and so on. to have it as MM i am prefixing "0".
Begin_yyyymmdd = Yeararray[bb]+dayarray[bb]+Dayarray[bb];
End_yyyymmdd = Yeararray[eb]+dayarray[eb]+Dayarray[eb];
// Trying to Concatenate so make it as YYYYMMDD
Ofcourse the code is not working, am sure I am doing it the wrong way, there has to be a shorter and creative way to do it.
Any help Please?
Posted by: Tomasz Janeczko <groups@amibroker.com>
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (5) |
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.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
EmoticonEmoticon