PureBytes Links
Trading Reference Links
or even easier... { Function: mo_da_yyyr returns a string in the form mm/dd/yyyy } var: yy(0); yy = year(date) + 1900; mo_da_yyyr = numtostr(month(date),0) + "/" + numtostr(dayofmonth(date),0) + "/" + numtostr(yy,0); -- Dennis