provinzio / CoinTaxman

Calculate your taxes from cryptocurrency gains
GNU Affero General Public License v3.0
142 stars 31 forks source link

Bitpanda exchange #70

Closed sebastianelsner closed 2 years ago

sebastianelsner commented 2 years ago

I have some old Bitpanda (not Pro) trades. So, I would like to add the exchange. I can add this myself using the code from "pro" as a template. But it would help a lot if someone could post one actual data line of the bitpanda pro csv export for orientation! Much appreciated!

provinzio commented 2 years ago

@uvok might be able to help you with that.

uvok commented 2 years ago

Sure thing.

For reference, Bitpanda Pro CSV files (as of May 2021, haven't checked this in a while, but the code is based on this).

For transactions (what goes in, what goes out of the account):

"Disclaimer: All data is without guarantee, errors and changes are reserved."
"Account id : aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"

"Bitpanda Pro transactions history"
"Transaction ID","External Transaction ID",Type,In/Out,Internal/External,Amount,Currency,Fee,"Time Created"
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee,n/a,Deposit,Incoming,External,100.00000000,EUR,0.00000000,2021-01-01T00:00:00+02:00
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeef,n/a,Withdrawal,Outgoing,External,200.00000000,EUR,0.00000000,2021-01-01T00:00:00+02:00

For trades:

"Disclaimer: All data is without guarantee, errors and changes are reserved."
Account ID: aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
Bitpanda Pro trade history
Order ID,Trade ID,Type,Market,Amount,Amount Currency,Price,Price Currency,Fee,Fee Currency,Time (UTC)
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeed,aaaaaaab-bbbb-cccc-dddd-eeeeeeeeeeee,SELL,BTC_EUR,0.00100,BTC,50000,EUR,0.01000000,BEST,2021-05-01T00:00:00.000000Z
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeec,aaaaaaab-bbbb-cccc-dddd-eeeeeeeeeeef,BUY,DOT_EUR,3.0000,DOT,30.000,EUR,0.05555555,BEST,2021-05-01T08:00:00.000000Z
uvok commented 2 years ago

sighs

Once again, since Github doesn't support Markup via mail:

Sure thing.

For reference, Bitpanda Pro CSV files (as of May 2021, haven't checked this in a while, but the code is based on this).

For transactions (what goes in, what goes out of the account):

"Disclaimer: All data is without guarantee, errors and changes are reserved."
"Account id : aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"

"Bitpanda Pro transactions history"
"Transaction ID","External Transaction ID",Type,In/Out,Internal/External,Amount,Currency,Fee,"Time Created"
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee,n/a,Deposit,Incoming,External,100.00000000,EUR,0.00000000,2021-01-01T00:00:00+02:00
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeef,n/a,Withdrawal,Outgoing,External,200.00000000,EUR,0.00000000,2021-01-01T00:00:00+02:00

For trades:

"Disclaimer: All data is without guarantee, errors and changes are reserved."
Account ID: aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
Bitpanda Pro trade history
Order ID,Trade ID,Type,Market,Amount,Amount Currency,Price,Price Currency,Fee,Fee Currency,Time (UTC)
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeed,aaaaaaab-bbbb-cccc-dddd-eeeeeeeeeeee,SELL,BTC_EUR,0.00100,BTC,50000,EUR,0.01000000,BEST,2021-05-01T00:00:00.000000Z
aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeec,aaaaaaab-bbbb-cccc-dddd-eeeeeeeeeeef,BUY,DOT_EUR,3.0000,DOT,30.000,EUR,0.05555555,BEST,2021-05-01T08:00:00.000000Z
sebastianelsner commented 2 years ago

Thanks will tinker on this a bit!