SymbolInfoDouble/SymbolInfoInteger

 
Date="+SymbolInfoInteger(_Symbol,SYMBOL_TIME)+" 

returns the date in that format : 

Date=1392399002

did i miss something ?

 
blouf:

returns the date in that format : 

Date=1392399002

did i miss something ?

Yes. SymbolInfoInteger() returns a long.
 
angevoyageur:
Yes. SymbolInfoInteger() returns a long.
oh. will symbolinfodouble() return a double ?
 
blouf:
oh. will symbolinfodouble() return a double ?

There are chances.

If you need a formatted date, use appropriate conversion function.

 
angevoyageur:

There are chances.

If you need a formatted date, use appropriate conversion function.

Appropriate conversion function. Like ? Cuz i do need a formatted date.
 
blouf:
Appropriate conversion function. Like ? Cuz i do need a formatted date.

Try to use

TimeToString(SymbolInfoInteger(_Symbol,SYMBOL_TIME));
 
Malacarne:

Try to use

thanks.