FileOpen delimiter problem?

 

I tried to open a file:

f=FileOpen("ranges.log",FILE_WRITE|FILE_CSV|FILE_ANSI,delimiter=',');

but it throws error:

'delimiter' - undeclared identifier     test.mq5        716     73

 

It's the same if I delete FILE_WRITE and FILE_ANSI

Is this a bug? 

Documentation on MQL5: Standard Constants, Enumerations and Structures / Input/Output Constants / File Opening Flags
  • www.mql5.com
Standard Constants, Enumerations and Structures / Input/Output Constants / File Opening Flags - Documentation on MQL5
 

You do not need to write "delimiter":

f=FileOpen("ranges.log",FILE_WRITE|FILE_CSV|FILE_ANSI,',');

 

 

of course!

mixed up influences from other languages than c

thank you