Bitcoin Forum
May 05, 2024, 01:41:28 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 »
  Print  
Author Topic: bitcoinity.org/markets - live bitcoin price charts  (Read 211476 times)
BitcoinMoxy
Member
**
Offline Offline

Activity: 119
Merit: 100


BitcoinMoxy.com


View Profile WWW
July 24, 2013, 09:09:32 PM
 #421

What are the intervals used for updating the minicharts? (http://bitcoinity.org/markets/webmasters)

Sorry if answered already-



BitcoinMoxy.com - Your Gateway into the World of Bitcoin for Newcomers, Day Traders, Advertisers.
Service updates: https://bitcointalk.org/index.php?topic=254631.0
1714873288
Hero Member
*
Offline Offline

Posts: 1714873288

View Profile Personal Message (Offline)

Ignore
1714873288
Reply with quote  #2

1714873288
Report to moderator
1714873288
Hero Member
*
Offline Offline

Posts: 1714873288

View Profile Personal Message (Offline)

Ignore
1714873288
Reply with quote  #2

1714873288
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714873288
Hero Member
*
Offline Offline

Posts: 1714873288

View Profile Personal Message (Offline)

Ignore
1714873288
Reply with quote  #2

1714873288
Report to moderator
1714873288
Hero Member
*
Offline Offline

Posts: 1714873288

View Profile Personal Message (Offline)

Ignore
1714873288
Reply with quote  #2

1714873288
Report to moderator
1714873288
Hero Member
*
Offline Offline

Posts: 1714873288

View Profile Personal Message (Offline)

Ignore
1714873288
Reply with quote  #2

1714873288
Report to moderator
comboy (OP)
Sr. Member
****
Offline Offline

Activity: 247
Merit: 252



View Profile
July 24, 2013, 09:36:18 PM
 #422

What are the intervals used for updating the minicharts? (http://bitcoinity.org/markets/webmasters)

Sorry if answered already-

0.005 * displayed timespan, so for example more than once every hour for the 7d chart. If it's an issue I can make them more up to date.

Variance is a bitch!
BitcoinMoxy
Member
**
Offline Offline

Activity: 119
Merit: 100


BitcoinMoxy.com


View Profile WWW
July 24, 2013, 11:57:41 PM
 #423

What are the intervals used for updating the minicharts? (http://bitcoinity.org/markets/webmasters)

Sorry if answered already-

0.005 * displayed timespan, so for example more than once every hour for the 7d chart. If it's an issue I can make them more up to date.

On BitcoinMoxy we display all 4 time spans next to each other:



And it shows a different latest price for each above the chart.

Is it possible to update the latest numbers (price/%) for all charts at the same time, maybe every 5 minutes, even if you want to avoid re-rendering the graphs for the bigger time spans as often? So that the numbers on all charts reflect the latest possible price.





BitcoinMoxy.com - Your Gateway into the World of Bitcoin for Newcomers, Day Traders, Advertisers.
Service updates: https://bitcointalk.org/index.php?topic=254631.0
Montago
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
July 25, 2013, 08:00:15 AM
Last edit: July 29, 2013, 09:57:32 AM by Montago
 #424

Hi ... I have an idea for an alternative to the Red-Green bars...

a radar-map:
https://i.imgur.com/o4DvoYo.jpg

on one axis you have Buy orders and on the other you have Sell orders...

I think its easier on the brain to understand - than the current Red-Red-Green-Green diagram which is VERY confusing for for first time users.

And eventhough i think i know what they mean - i still mixup their meaning because i forget what up and down is...
X/Y diagrams and radar maps are easier to read - in my oppinion.  
----------------------

Edit:

Alternatively, the BUY and SELL colors should be different ... so instead of each having 2 colors - the placement above/under indicate what they are...

Green above = increase in buy
Green below = decrease in buy
Red above = increase in sell
Red below = decrease in sell

using the same color for 2 schemes makes the graph harder to read

or maybe i havent spent enough hours getting used to what is what...
Montago
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
August 01, 2013, 01:58:10 PM
 #425

Could someone explain why there are red bars ABOVE the line - left to the current market price ?

to me it looks like people who are selling BTC at a low price ?

I've tried to Bid for them, but never got any !?

https://i.imgur.com/QHeq0dh.png
whydifficult
Sr. Member
****
Offline Offline

Activity: 287
Merit: 250



View Profile WWW
August 01, 2013, 06:01:02 PM
 #426

Check this: http://data.bitcoinity.org/#caaaabei, but don't tell anyone Wink

Is that NVD3?

Because I am building something similar myself Smiley

Gekko a nodejs bitcoin trading bot!
Realtime Bitcoin Globe - visualizing all transactions and blocks
Tip jar (BTC): 1KyQdQ9ctjCrGjGRCWSBhPKcj5omy4gv5S
nanop
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
August 02, 2013, 09:50:47 PM
Last edit: August 05, 2013, 03:40:36 AM by nanop
 #427

Hello. Here's more detailed trade history from CampBX exchange. The ticks are actually the trade being fulfilled. I began collecting data a few days ago.

List of trades on campbx in descending order by time then Order ID:
http://serene-waters-2795.herokuapp.com/history?startUnixtime=0
startUnixtime: begin time for query, conversion help look here: http://www.onlineconversion.com/unix_time.htm

Streaming list of latest trades:
http://serene-waters-2795.herokuapp.com/events

Happy trading.

Update 8/4: Site was down sporadically due to error connecting to database only after inactivity. No data was lost, as this app only reads from database. Another unexposed app actually collects and writes the data to database. Connection issue is now fixed with the following error handling code. Enjoy the data.
Code:
      
def connect(): Boolean = {
        try {
          Logger.debug("connecting")
          Await.result(t.find(Json.obj()).one[JsValue], 3.seconds)
          Logger.debug("connected")
          true
        } catch {
          case e: Throwable => {
            Logger.debug("retry")
            connect()
          }
        }
      }
connect()
starsoccer9
Legendary
*
Offline Offline

Activity: 1630
Merit: 1000



View Profile
August 08, 2013, 01:18:09 PM
 #428

Really would like your service to actully work correctly. The orderbook depth never updates and ive told you about it multiple times and you havent made a fix for it still
TraderTimm
Legendary
*
Offline Offline

Activity: 2408
Merit: 1121



View Profile
August 08, 2013, 05:24:58 PM
 #429

Really would like your service to actully work correctly. The orderbook depth never updates and ive told you about it multiple times and you havent made a fix for it still

Works pretty well for being free, I think. Not sure what you mean by orderbook depth not updating - it does for me.

fortitudinem multis - catenum regit omnia
Hfleer
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


Changing avatars is currently not possible.


View Profile
August 08, 2013, 08:39:59 PM
 #430

mtgox: http://bitcoinity.org/markets?exchange=mtgox (a bit laggy while their API is still not fully functional)
tradehill: http://bitcoinity.org/markets?exchange=tradehill

I just wanted to create some thread to collect feedback.
Ideas or problem reports are welcome.

Basically I just created it to have some live ticker on my unused 15" LCD (so it's kinda optimized for 1024x768 full screen), but since some poeple started using it, I'm developing it a bit more. More features coming soon.




I found this site after reading a thread where someone posted a screenshot of it.  Looks good, I like how the market depth chart is adjustable with zooming and the change bars time.  I think I will use this often.

█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
▓▓▓▓▓  BIT-X.comvvvvvvvvvvvvvvi
→ CREATE ACCOUNT 
▓▓▓▓▓
█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
physalis
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250



View Profile
August 13, 2013, 03:14:45 PM
 #431

1: Any plans to keep track of bitcoin.de its increasing market share has them currently shifting about 40,000 BTC per month as a euro person this would be nice to see.

I've been trying get some API from them for a few months now. Still no luck.
I'd also really like to see bitcoin.de on bitcoinity.
 
http://bitcoinaverage.com/ shows their data, so there must be some way to fetch it.
johnblaze
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 28, 2013, 04:13:25 PM
 #432

the image charts haven't been displaying for the past couple days  Sad
comboy (OP)
Sr. Member
****
Offline Offline

Activity: 247
Merit: 252



View Profile
August 28, 2013, 04:17:41 PM
 #433

the image charts haven't been displaying for the past couple days  Sad

Can you post some URL where they are not displaying? They seem to look fine here: http://bitcoinity.org/markets/webmasters

And if we could move with this discussion here https://bitcointalk.org/index.php?topic=137424.0 it would keep things clean.

Variance is a bitch!
capsqrl
Sr. Member
****
Offline Offline

Activity: 444
Merit: 250



View Profile
August 28, 2013, 05:46:06 PM
 #434

What's with http://bitcoinity.org/markets/mtgox/USD today? It seems to show a very small order book (only 6500 BTC for sale?).

Norsk Bitcoin-bruker? Kom til /r/BitcoinNO på reddit!
comboy (OP)
Sr. Member
****
Offline Offline

Activity: 247
Merit: 252



View Profile
August 28, 2013, 05:55:45 PM
 #435

What's with http://bitcoinity.org/markets/mtgox/USD today? It seems to show a very small order book (only 6500 BTC for sale?).

Mtgox changed something and even though I was polling for full depth with the same frequency as I've been for the last year, I got banned. I'm in contact with them, they did some changes, blah blah blah gox gox, it should be back within 24h. Sorry for the problem.

Variance is a bitch!
johnblaze
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 29, 2013, 12:53:20 PM
 #436

the image charts haven't been displaying for the past couple days  Sad

Can you post some URL where they are not displaying? They seem to look fine here: http://bitcoinity.org/markets/webmasters

And if we could move with this discussion here https://bitcointalk.org/index.php?topic=137424.0 it would keep things clean.

all of those charts at your link are fine

i meant the main charts here:
http://bitcoinity.org/markets

however, it seems that after visiting that other page, those main charts show up again. dont know what happened. i had previously tried refreshing, reopening browser, etc. but who knows, it works again
giszmo
Legendary
*
Offline Offline

Activity: 1862
Merit: 1105


WalletScrutiny.com


View Profile WWW
August 30, 2013, 03:10:46 PM
 #437

something is seriously wrong with the charts. I just saw, high 133, volume 3k but market depth was somewhat old.
I hit refresh and the high was at 130. Seconds later a rally to 135 started. Volume 5k. Depth did not get updated again.
I refreshed again. Now it shows high as 135 again, last volume is only 400 and depth can't possibly be what it should look like such a spike.

Please fix it. It's kind of not trustworthy now.

ɃɃWalletScrutiny.comIs your wallet secure?(Methodology)
WalletScrutiny checks if wallet builds are reproducible, a precondition for code audits to be of value.
ɃɃ
comboy (OP)
Sr. Member
****
Offline Offline

Activity: 247
Merit: 252



View Profile
August 31, 2013, 11:59:50 AM
 #438

something is seriously wrong with the charts. I just saw, high 133, volume 3k but market depth was somewhat old.
I hit refresh and the high was at 130. Seconds later a rally to 135 started. Volume 5k. Depth did not get updated again.
I refreshed again. Now it shows high as 135 again, last volume is only 400 and depth can't possibly be what it should look like such a spike.

Please fix it. It's kind of not trustworthy now.

When you enter the page, chart data and last price may be up to 20 (AFAIR) seconds old. I'll try to improve that and I'll update the thread with this info.

Regarding market depth there are some problems on mtgox side, and they stopped responding on their ticket system even though I keep sending them messages about it. So for now there is no full depth.


Variance is a bitch!
giszmo
Legendary
*
Offline Offline

Activity: 1862
Merit: 1105


WalletScrutiny.com


View Profile WWW
August 31, 2013, 04:22:35 PM
 #439

something is seriously wrong with the charts. I just saw, high 133, volume 3k but market depth was somewhat old.
I hit refresh and the high was at 130. Seconds later a rally to 135 started. Volume 5k. Depth did not get updated again.
I refreshed again. Now it shows high as 135 again, last volume is only 400 and depth can't possibly be what it should look like such a spike.

Please fix it. It's kind of not trustworthy now.

When you enter the page, chart data and last price may be up to 20 (AFAIR) seconds old. I'll try to improve that and I'll update the thread with this info.
Well, I noticed that but when it finally caught up, it was coming to different results every time. Are you doing some checkpoint + delta thingy? Looks like it's skipping some data on heavy action and it definitely was not right after 20 s. The traded volume was random.

Regarding market depth there are some problems on mtgox side, and they stopped responding on their ticket system even though I keep sending them messages about it. So for now there is no full depth.
That's unfortunate. Maybe tell the user you know it's inaccurate or better give a hint on how inaccurate it actually is.

ɃɃWalletScrutiny.comIs your wallet secure?(Methodology)
WalletScrutiny checks if wallet builds are reproducible, a precondition for code audits to be of value.
ɃɃ
comboy (OP)
Sr. Member
****
Offline Offline

Activity: 247
Merit: 252



View Profile
August 31, 2013, 05:34:50 PM
 #440

When you enter the page, chart data and last price may be up to 20 (AFAIR) seconds old. I'll try to improve that and I'll update the thread with this info.
Well, I noticed that but when it finally caught up, it was coming to different results every time. Are you doing some checkpoint + delta thingy? Looks like it's skipping some data on heavy action and it definitely was not right after 20 s. The traded volume was random.

I don't. Currently, if you are unlucky then right after you enter page, last volume bar may not be as high as it should be. I'll try to improve that.

Regarding market depth there are some problems on mtgox side, and they stopped responding on their ticket system even though I keep sending them messages about it. So for now there is no full depth.
That's unfortunate. Maybe tell the user you know it's inaccurate or better give a hint on how inaccurate it actually is.

It's just about full depth, that's why it's not shown currently at all. Normal depth (means depth +-10% around the current price) is working fine.

Variance is a bitch!
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 »
  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!