Bitcoin Forum
June 24, 2024, 02:40:14 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 »
41  Bitcoin / Bitcoin Discussion / Bitcoin Activity Map on: June 02, 2011, 06:33:39 AM
http://eu1.bitcoincharts.com/map/

Works only in Chrome (needs websocket).

Currently, it also shows forwarded transactions and blocks thus you can see how they spread through the network. I might change that in the future.
42  Bitcoin / Development & Technical Discussion / Re: Dead/forbidden Links on: May 31, 2011, 04:10:23 PM
I made a read-only copy of the wiki: http://eu1.bitcoincharts.com/bitcoin-wiki/wiki/Main_Page.html

Don't bookmark this link!
43  Economy / Trading Discussion / Re: What's the best way to watch BTC price action live? on: May 30, 2011, 12:59:35 PM
FYI, I've made all detail charts and tables on bitcoincharts.com auto-updating. Not realtime yet, though.
44  Economy / Trading Discussion / Re: What's the best way to watch BTC price action live? on: May 30, 2011, 10:23:46 AM
There's also http://bitcoincharts.com and

telnet bitcoincharts.com 27007 (no depth updates yet)
45  Bitcoin / Bitcoin Discussion / Re: JavaScript UI for Bitcoin, QR code, bitcoin: URIs on: May 25, 2011, 11:45:24 PM
v0.3.5:
* support for subcent values
46  Economy / Economics / Re: Already thinking in BTC on: May 10, 2011, 12:48:41 PM
47  Bitcoin / Mining / Re: Windows Sidebar Gadget Supports deepbit / slushpool / Eligius on: May 10, 2011, 08:18:25 AM
It looks like this gadget has a bug which causes it to do multiple requests per second to http://bitcoincharts.com/t/markets.json in some cases.

Bitcoincharts has firewall rules which blacklists IPs that cause too many request/s. If you can't access bitcoincharts, email me at info@bitcoincharts.com and mention your IP so I can unblock it.
48  Economy / Trading Discussion / Re: Historic market depth charts on: May 05, 2011, 07:43:43 AM
I changed the link to a static image. It's too much work for the tiny VPS to render it on demand.
49  Economy / Trading Discussion / Historic market depth charts on: May 02, 2011, 10:00:41 PM
I'm working on a historic market depth chart.

Here's one for mtgox:

https://i.imgur.com/wcPH7.png

This is work-in-progress and will change frequently until I figured out how such a chart should look. Any suggestions? Smiley
50  Bitcoin / Development & Technical Discussion / Re: bitcoind ideas on: April 30, 2011, 03:20:54 AM
I started work on a patch that adds a CLI:

https://github.com/tcatm/bitcoin/tree/cli


Code:
$ ./bitcoind
Welcome to Bitcoin, the digital crypto currency. (0.3.22-beta)

Type:  'help' for help with commands
       'stop' to quit

> getinfo
{"result":{"version":32200,"balance":1.64048576,"blocks":120928,"connections":1,"proxy":"","generate":false,"genproclimit":1,"difficulty":92347.59095209,"hashespersec":0,"testnet":false,"keypoololdest":2465843123,"paytxfee":0.00000000,"errors":""},"error":null,"id":1}

> help sendmany
{"result":"sendmany <fromaccount> {address:amount,...} [minconf=1] [comment]\namounts are double-precision floating point numbers","error":null,"id":1}

> stop

Shutdown initiated. Thank you for using Bitcoin!
$
51  Bitcoin / Bitcoin Discussion / Re: BTCUSD historical volatility on: April 24, 2011, 01:17:54 PM
I have tried to get historical mtgox closing prices from both

http://bitcoincharts.com/t/trades.csv

You need to specify the symbol you want (e.g. mtgoxUSD in your case):

http://bitcoincharts.com/t/trades.csv?symbol=mtgoxUSD

Also, if you want the complete history you need to set a start timestamp:
http://bitcoincharts.com/t/trades.csv?symbol=mtgoxUSD&start=0
52  Economy / Trading Discussion / Re: Historic trade data on: April 20, 2011, 09:18:34 PM
Mt. Gox data seems to start on August 17, but Mt. Gox opened on July 17.  Is the early data missing?
That's all data that was ever available from mtgox IIRC. If anyone has older trade data I'll be happy to add it to the database Smiley
53  Economy / Trading Discussion / Historic trade data on: April 20, 2011, 08:07:14 PM
I'm happy to announce that http://bitcoincharts.com now offers historic market data.

Code:
http://bitcoincharts.com/t/trades.csv?symbol=SYMBOL[&start=UNIXTIME][&end=UNIXTIME]

returns CSV:

unixtime,price,amount

You can get a list of symbols and the currency traded from http://bitcoincharts.com/t/markets.json

Without start or end set it'll return the last few days (this might change!).

Examples:
Code:
Latest mtgoxUSD trades:
http://bitcoincharts.com/t/trades.csv?symbol=mtgoxUSD

All bcmPPUSD trades:
http://bitcoincharts.com/t/trades.csv?symbol=bcmPPUSD&start=0

btcexYAD trades from a range:
http://bitcoincharts.com/t/trades.csv?symbol=btcexYAD&start=1303000000&end=1303100000

Donations accepted at 1Nqr3MqVyUp6k3o3QPePAdn4Yg4tzgB9kw

Please don't use this for realtime streaming! Use the telnet interface (TCP port 27007) instead.

This service is strictly for personal use. Do not assume this data to be 100% accurate or write trading bots that rely on it.
54  Bitcoin / Project Development / Re: Bounty: Play sound file when block is generated on: April 19, 2011, 10:20:23 PM
Depending on your miner you might not hear the sound for a long time.  Smiley

Yep, it should temporarily turn off the fans, too... Smiley
55  Bitcoin / Project Development / Re: Looking for testers on: April 19, 2011, 05:39:40 PM
well, if you want testers, add testnet support. That's what testnet is for.
56  Bitcoin / Project Development / Re: Looking for testers on: April 19, 2011, 05:09:34 PM
Does it support testnet?
57  Bitcoin / Development & Technical Discussion / Re: bitcoind ideas on: April 19, 2011, 04:14:28 PM
Good idea. Maybe the stdio CLI could accept JSON or RPC commands? JSON returns JSON, RPC prettyprints.

So a client like Spesmilo could just start bitcoin-cli as a subprocess and communicate via a pipe.

At the same time, bitcoin-cli could function as an interactive client to another bitcoin(-cli) running with -server.
58  Bitcoin / Development & Technical Discussion / bitcoind ideas on: April 19, 2011, 03:33:26 PM
Some ideas for bitcoind:

* rename bitcoind -> bitcoin-cli
* add an interactive readline RPC interface forking is disabled
* don't start TCP RPC by default if forking is disabled

Examples:
$ bitcoin-cli
> getinfo
{...}
> stop
$

$ bitcoin-cli -server
Starting ThreadRPC
> stop
$

$ bitcoin-cli -daemon
$ # same behaviour as bitcoind
59  Bitcoin / Development & Technical Discussion / Re: bitcoind release repo doesn't fork on: April 19, 2011, 02:04:03 PM
Looks like it has been merged here:

https://github.com/bitcoin/bitcoin/commit/d12ea887bcf1eab4b029007c4bf5821992c0c6b1
60  Economy / Trading Discussion / Re: Mt Gox "All time" chart extremely out of date on: April 19, 2011, 01:32:04 PM
I'm currently developing a interface to access the data (as CSV) from custom intervals. It'll be available soon.
Pages: « 1 2 [3] 4 5 6 7 8 9 10 11 12 13 14 15 16 17 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!