Bitcoin Forum
June 14, 2024, 05:52:32 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: What are you using to track your BTC balance over different services?  (Read 2332 times)
ripper234 (OP)
Legendary
*
Offline Offline

Activity: 1358
Merit: 1003


Ron Gross


View Profile WWW
September 17, 2012, 08:34:54 AM
 #1

When your assets are distributed among different services, tracking it all becomes an issue.

Posted the question to Quora, copy-pasted here for convenience:

Is there a good solution for tracking your balance across multiple wallets/services?

E.g. it should cover multiple different wallets (blockchain.info, offline wallet, std client), exchanges (Mt. Gox), various investments on GLBSE, interest-bearing bonds...

Naturally, the solution is not expected to integrate with these services, but rather to provide the user with the correct framework to manage his balances. It should support at least BTC & USD balances.

I'm currently using a Google Doc for this, but it's a bit lame and error prone, so I'm looking for something more dedicated.

Please do not pm me, use ron@bitcoin.org.il instead
Mastercoin Executive Director
Co-founder of the Israeli Bitcoin Association
unclescrooge
aka Raphy
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000


View Profile
September 17, 2012, 08:35:52 AM
 #2

I'm using a excel spreadsheet, but it's equally lame and prone to error :/
Akka
Legendary
*
Offline Offline

Activity: 1232
Merit: 1001



View Profile
September 17, 2012, 08:55:37 AM
 #3

I used Excel too, but thanks to Glbse and the hundreds of stocks this isn't manually hand-able anymore. Looking for a different solution, too.

All previous versions of currency will no longer be supported as of this update
markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
September 17, 2012, 09:03:57 AM
 #4

Sounds like this would be a useful feature for grandma's Open Transactions client to include, though maybe filed under "advanced features" in the menu...

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
September 17, 2012, 10:06:37 AM
 #5

When your assets are distributed among different services, tracking it all becomes an issue.

I trust all these services. And visit them once a week to refresh total balance in my mind.
Grouver (BtcBalance)
Hero Member
*****
Offline Offline

Activity: 530
Merit: 500



View Profile WWW
September 17, 2012, 10:24:16 AM
 #6

I prefer www.btcbalance.net  Roll Eyes

plasticAiredale
Full Member
***
Offline Offline

Activity: 207
Merit: 120



View Profile
September 17, 2012, 11:49:21 AM
 #7

I prefer www.btcbalance.net  Roll Eyes

Non-Grouver-Sockpuppet here, I use btcbalance.net as well.
bg002h
Donator
Legendary
*
Offline Offline

Activity: 1463
Merit: 1047


I outlived my lifetime membership:)


View Profile WWW
September 17, 2012, 10:22:54 PM
 #8

If you have all the addresses, you can use the iOS app I wrote to keep track:
http://itunes.apple.com/us/app/mybitcoins/id539677499?ls=1&mt=8

Hardforks aren't that hard. It’s getting others to use them that's hard.
1GCDzqmX2Cf513E8NeThNHxiYEivU1Chhe
aneutronic
Full Member
***
Offline Offline

Activity: 175
Merit: 100


View Profile
September 18, 2012, 02:22:11 PM
 #9

I use this for android:

https://play.google.com/store/apps/details?id=net.phase.wallet
flatfly
Legendary
*
Offline Offline

Activity: 1078
Merit: 1016

760930


View Profile
September 18, 2012, 04:06:44 PM
 #10

For Windows, you can check my new Deep Space Vagabond - it supports drag and drop of multi-address files for quick balance checking (check the forum thread for the exact file format).

Note that it is still in beta but has proven extremely stable so far.
mai77
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
April 04, 2013, 01:40:22 PM
 #11

btnss11.jpg - 224.75 KB

http://[URL=http://d-h.st/x3W]btnss11.jpg - 224.75 KB[/URL]

<a href="http://d-h.st/x3W">btnss11.jpg - 224.75 KB</a>

http://www.picturehost.eu/uploads/38d0bc3911d853dbd96d7ee1bd8910f2_btnss11.jpg

 Grin

http://d-h.st/users/mai77/?fld_id=13411#files

free excel calc sheet
hazek
Legendary
*
Offline Offline

Activity: 1078
Merit: 1002


View Profile
April 04, 2013, 02:02:28 PM
 #12

blockchain.info watch only addresses with labels

My personality type: INTJ - please forgive my weaknesses (Not naturally in tune with others feelings; may be insensitive at times, tend to respond to conflict with logic and reason, tend to believe I'm always right)

If however you enjoyed my post: 15j781DjuJeVsZgYbDVt2NZsGrWKRWFHpp
philipmicklon
Full Member
***
Offline Offline

Activity: 176
Merit: 100


View Profile
February 18, 2014, 07:19:19 AM
 #13

Just spent 2 minutes and wrote up some simple code I can run from localhost to keep track of my addresses.

Anyone want to take this code and add some TLC to make a nice open-source script for everyone? Maybe we should throw it on github...


Code:
<?php
setlocale
(LC_MONETARY'en_US');
$bal_total=0$bal_total_usd=0;

$json file_get_contents('https://coinbase.com/api/v1/prices/buy');
$obj json_decode($json);
$price $obj->amount;

function 
get_balance($address){
$balance file_get_contents('https://blockchain.info/q/addressbalance/'.$address) / 100000000;
return $balance;
}

$addresses =
[
"1Ht9qJsZgcN7f8pkd1RdbHvHVm3EAXZauA",
"1LzZttK9wgX2aoatudknVtPYTn51d46BrR"
];

echo 
"<table>";

foreach (
$addresses as $address){
$add_bal get_balance($address);
$bal_usd $add_bal*$price;
$bal_total += $add_bal $bal_total_usd += $bal_usd;

echo "<tr><td>".$address."</td><td align=right width=200px>"money_format('%(#10n'$bal_usd)."</td><td width=150px align=right>".number_format($add_bal,3)."</td></tr>";
}
echo 
"<tr><td>Total:</td><td align=right>".money_format('%(#10n'$bal_total_usd)."</td><td align=right>$bal_total</td></tr>";
echo 
"</table>";

?>

keithers
Legendary
*
Offline Offline

Activity: 1456
Merit: 1001


This is the land of wolves now & you're not a wolf


View Profile
February 18, 2014, 07:52:49 AM
 #14

I prefer www.btcbalance.net  Roll Eyes

I have been using excel. Gonna try this... Thanks!
Elwar
Legendary
*
Offline Offline

Activity: 3598
Merit: 2386


Viva Ut Vivas


View Profile WWW
February 18, 2014, 08:02:37 AM
 #15

http://www.mint.com now includes bitcoin balances but I am not sure how they are doing it. I used to use Mint.com to follow my fiat.

First seastead company actually selling sea homes: Ocean Builders https://ocean.builders  Of course we accept bitcoin.
dave3k
Full Member
***
Offline Offline

Activity: 147
Merit: 100


Realbitcoin.info


View Profile WWW
February 18, 2014, 08:09:54 AM
 #16

blockchain.info watch only addresses with labels

+1

I just add to watch only, Infact this is the only way I use blockchain.info these days.
I used to have to store hot coins there before I sold my iPhone.

Realbitcoin.info
philipmicklon
Full Member
***
Offline Offline

Activity: 176
Merit: 100


View Profile
February 18, 2014, 08:11:08 AM
 #17

http://www.mint.com now includes bitcoin balances but I am not sure how they are doing it.
They use the coinbase API.
serje
Legendary
*
Offline Offline

Activity: 1232
Merit: 1002



View Profile
February 18, 2014, 08:14:41 AM
 #18

When your assets are distributed among different services, tracking it all becomes an issue.

I trust all these services. And visit them once a week to refresh total balance in my mind.

+1 to "in my mind" place!
That's what I do!

I even memorized my private keys so whenever I need to spend BTC I import one spend and then delete!

Space for rent if its still trending
dharmapuriharithaa
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
February 18, 2014, 08:49:16 AM
 #19

Just spent 2 minutes and wrote up some simple code I can run from localhost to keep track of my addresses.

Anyone want to take this code and add some TLC to make a nice open-source script for everyone? Maybe we should throw it on github...


Code:
<?php
setlocale
(LC_MONETARY'en_US');
$bal_total=0$bal_total_usd=0;

$json file_get_contents('https://coinbase.com/api/v1/prices/buy');
$obj json_decode($json);
$price $obj->amount;

function 
get_balance($address){
$balance file_get_contents('https://blockchain.info/q/addressbalance/'.$address) / 100000000;
return $balance;
}

$addresses =
[
"1Ht9qJsZgcN7f8pkd1RdbHvHVm3EAXZauA",
"1LzZttK9wgX2aoatudknVtPYTn51d46BrR"
];

echo 
"<table>";

foreach (
$addresses as $address){
$add_bal get_balance($address);
$bal_usd $add_bal*$price;
$bal_total += $add_bal $bal_total_usd += $bal_usd;

echo "<tr><td>".$address."</td><td align=right width=200px>"money_format('%(#10n'$bal_usd)."</td><td width=150px align=right>".number_format($add_bal,3)."</td></tr>";
}
echo 
"<tr><td>Total:</td><td align=right>".money_format('%(#10n'$bal_total_usd)."</td><td align=right>$bal_total</td></tr>";
echo 
"</table>";

?>


Thanks for the php scrip. I will use it in feature.

domob
Legendary
*
Offline Offline

Activity: 1135
Merit: 1166


View Profile WWW
February 18, 2014, 10:33:20 AM
 #20

I use Gnucash (not only but also for tracking Bitcoin wallets and balances).  It doesn't yet support Bitcoin, unfortunately (at least not the version in Debian Wheezy), but has a special currency XXX to mean "something else" which works ok for me.  Hopefully they will include Bitcoin at some point in the future (or one could trivially patch the code, but I've not yet come around to that).  For keeping track of BTC vs Fiat trades on exchanges, I've written some simple scripts to interpret CSV exports.

Use your Namecoin identity as OpenID: https://nameid.org/
Donations: 1domobKsPZ5cWk2kXssD8p8ES1qffGUCm | NMC: NCdomobcmcmVdxC5yxMitojQ4tvAtv99pY
BM-GtQnWM3vcdorfqpKXsmfHQ4rVYPG5pKS | GPG 0xA7330737
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!