Bitcoin Forum
May 26, 2024, 06:33:09 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 »
421  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 08, 2013, 07:52:45 AM
coins-e added

coinex.pw - still broken cloudfare in front of there API
422  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 05, 2013, 11:22:10 PM
forgot to precomple the assets, just did it then, datacoin and mastercoin should be fine now

if you are still having problems PM me your UUID and ill have a look DO NOT POST IT
423  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 05, 2013, 02:24:46 PM
for some reason https://bter.com/api/1/ticker/DTC_BTC is very slow

i think my code is giving up before the page loads, its midnight here i need to sleep... perhaps it will show up later when that page loads faster
424  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 05, 2013, 01:52:36 PM
updated the first post
425  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 04, 2013, 11:53:55 AM
It would be useful to see the percentage increase compared to the day before. Is it possible to add that?

I am not storing the price data, it is overwriten as soon as new data comes in


is it how you calculate the price from BTC based on what we choose up above

yes


Finally managed to swap the backed-end database from sqlite3 to MYSQL, I can already notice a performance increase.

it will also stop the background tasks getting claged up and making all the data old....

apologizes for the downtime.
426  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 04, 2013, 11:49:38 AM
LTC @ 45.25 Huh Only in cryptofolio Smiley
calculated from BTC/LTC market using the price in the top dropdown

When the prices of the site update?
every 5 minutes, red exclamation marks will show if something goes wrong and the data is more then 11 minutes old
place your mouse over the icon to see how old it is

If, for exemple, i have the coins on btc-e, why dont you make the calc in BTC price from that exchange?
btc-e as a Bitcoin price is not implemented but there is gox,bitstamp,coinbase,coinjar,bitcoinaverage all have USD
427  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 03, 2013, 06:04:02 AM
maintenance tonight, changing the back end database for more performance.

didn't go as planed - had to use disaster recovery procedure Sad

apologies to anyone who modified their folio in the 5 minutes the database was rolled back

guess the good news is disaster recovery works
428  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 02, 2013, 12:11:51 AM
didn't get to it last night only got bitcoin average and bitstamp in..

tonight after work


coinex.pw seems to be broken for some reason because they put cloudfare in between there api and me...

broke a record yesterday 1279 unique visitors
429  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: December 01, 2013, 12:02:41 AM
that one slipped through the cracks, thinking of adding bitcoinaverage and bitstamp later today
430  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: November 30, 2013, 11:39:31 PM
windows only: save the code below as whatever.vbs

Code:
set http = CreateObject("microsoft.xmlhttp")
http.open "GET","https://blockchain.info/q/addressbalance/<BITCOIN PUBLIC ADDRESS HERE!!!>?confirmations=6",false
http.send
htmlpage = http.responsetext

set http = CreateObject("microsoft.xmlhttp")
http.open "GET","http://cryptofolio.info/api/v1/?@UUID=<UUID HERE!!!>&@VALUE=@UpdateQuantity&@CODE=BTC&@Quantity=" & (CDbl(htmlpage) /100000000) ,false
http.send
htmlpage = http.responsetext
WScript.Echo htmlpage

replace <BITCOIN PUBLIC ADDRESS HERE!!!> and <UUID HERE!!!>

once you run the script don't press calculate or you will overwrite the new value with the old one.

load the folio again with your bookmark or click "reload" from the top left menu

if you like to count your chickens before they hatch remove the ?confirmations=6



EDIT DOGE VERSION:
Code:
set http = CreateObject("microsoft.xmlhttp")
http.open "GET","http://dogechain.info/chain/Dogecoin/q/addressbalance/<DOGECOIN PUBLIC ADDRESS HERE!!!>",false
http.send
htmlpage = http.responsetext

set http = CreateObject("microsoft.xmlhttp")
http.open "GET","http://cryptofolio.info/api/v1/?@UUID=<UUID HERE!!!>&@VALUE=@UpdateQuantity&@CODE=DOGE&@Quantity=" & htmlpage ,false
http.send
htmlpage = http.responsetext
WScript.Echo htmlpage
431  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: November 30, 2013, 08:01:41 AM
should take effect in the next 5 mins

The VPS is now using ftp transferring the database off to my raspberry pi every 10 minutes.

All the code is in my private git and the VPS has backup enabled.
432  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: November 30, 2013, 07:05:45 AM

also XRP would be a useful addition


someone else asked that on twitter or somewhere - I need a API to a place that will give me the price like - https://bter.com/api/1/ticker/btc_cny , but for ripple

I did have a look around and it just looked to complicated or not what I was looking for
433  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: November 30, 2013, 04:56:21 AM
Once again, love the site.

Would be great to be able to be able to export your portfolio as a xls or csv file!

if its for disaster recovery -  I have that covered its on a VPS - worst case your folio would be restored to a few days back

I probably should set something up to ftp the database off every 30 mins or so.... hmm

if its for offline viewing perhaps its useful but the prices move to fast the excel would get out of date quickly



Unrelated: Way more stuff in the API you can now push quantity data into your folio, also retrieve it as well.

Might be a prize for someone who can make a program/script that takes public address and the UUID and updates the quantities.
434  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: November 29, 2013, 11:10:55 PM
API released

http://cryptofolio.info/api/info
435  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: November 28, 2013, 09:42:02 PM
update your links and bookmarks, take the "beta." out
436  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 73 coins !!! on: November 28, 2013, 08:54:58 PM
It would be nice to be able to add coins that aren't listed on any exchange (like brand new ones or shitty ones).
One would then enter their values manually.

had that on the old site, trust me its not that good - even i am waiting for starcoin to come back on an exchange so it shows up.

In my case, it'd be useful to note where I stored my coins, since I don't store them all at the same place or in the same wallets.

are you using the new site? theirs a description field, you can also add 100 Bitcoin or 100 Litecoin line items.


also the seems the hosting provider has not moved the site over... going to put in a new ticket.
437  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 72 coins !!! on: November 28, 2013, 11:50:48 AM
sexcoin added
438  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [QRK] 120,000 QRK Bounty for New Logo on: November 28, 2013, 11:32:01 AM
dcl595 your last one looks like yacoin

Mjbmonetarymetals logo is the best
439  Alternate cryptocurrencies / Altcoin Discussion / Re: IFC Removed from Cryptsy on: November 28, 2013, 11:22:12 AM
IFC was doing quite well I think it will be back.
440  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: cryptofolio.info - Coin Calculator- Now with 72 coins !!! on: November 28, 2013, 11:11:17 AM
coinex added

its like im a wizard or something...... Cheesy
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!