Quick question. Say we have this:
SetOption( "NoDefaultColumns", True );
AddColumn( DateTime(), "Date/Time", formatDateTime);
A batch file is exporting the exploration to a csv with the date/time column in this format:
7/18/2018 5:00:00 PM
and we want it to use this format:
7/18/2018 17:00
Reference:
https://www.amibroker.com/guide/afl/datetimeformat.html
The format code, if I'm not mistaken is: "%m/%d/%Y %H:%M"
How do we do it?