When I import my transaction history CSV from BitMEX to Koinly, all my transactions import with zero amounts
Workaround
I need to modify the file before importing it to Koinly
  • Rename column
    amount
    to
    amount_old
  • Add new column
    amount
  • Calculate this column for all rows as
    amount_old * 100000000
    (or
    amount_old * POWER(10,8)
    )