Scripts: Account History Exporter

 

Account History Exporter:

Export the history of transactions on the trading account.

Author: Yuriy Bykov

 

Hi dear,

hope you can help me

what do you mean about seperators and decimal point

what should i put in this 2 field

 

Hi,  Mohamad Jeha

If we need to save into csv-file some numbers, for example [1.01, 3.14, 7.28] we can use some symbol for separating one number from next number. This is a separator. Also we have to use some symbol as divider integer and fractional part of number. This is decimal point.

If separator is ';' and decimal point is '.' then into file will be saved following:

1.01;3.14;7.28

If separator is ';' and decimal point is ',' then into file will be saved following:

1,01;3,14;7,28

If separator is ',' and decimal point is '.' then into file will be saved following:

1.01,3.14,7.28

Which you choose depends from what program you will use for further handling exported data.