Bitcoin Forum

Bitcoin => Project Development => Topic started by: Mr. Net on January 28, 2014, 01:20:08 PM



Title: python based trade logger
Post by: Mr. Net on January 28, 2014, 01:20:08 PM
Hi, I want to automatically log all my trade history to a simple text file.

First question, is it even possible? (trade logger should be compatible with Bter, cryptsy and BTC-e)

Has something similar already been done? (haven't found anything...)



Title: Re: python based trade logger
Post by: Sukrim on January 28, 2014, 11:20:33 PM
I recommend taking a look at ledger (ledger-cli.org) and using python to convert whatever csv or other file you have at hand from these exchanges into the format ledger uses.


Title: Re: python based trade logger
Post by: AllanAV on January 29, 2014, 02:04:03 AM
Hi, I want to automatically log all my trade history to a simple text file.

First question, is it even possible? (trade logger should be compatible with Bter, cryptsy and BTC-e)

Has something similar already been done? (haven't found anything...)


Just use the private API from BTC-e to request the transactions and output to a txt file, the only hard part is to figure out how to authenticate. everything else is easy. I would recommend Phyton is is a simple task so scripts should be able to manage it just fine.