Bitcoin Forum
May 04, 2024, 07:59:01 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 ... 84 »
  Print  
Author Topic: www.BITSTAMP.net Bitcoin exchange site for USD/BTC  (Read 231196 times)
genuise
Sr. Member
****
Offline Offline

Activity: 379
Merit: 250


View Profile WWW
October 20, 2013, 04:41:35 PM
 #521

The API is very weak when not even MKT Orders are supported. Who cares about LMT?

I am asking about public orderbook depth and trades streams.

No Gods or Kings. Only Bitcoin
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714852741
Hero Member
*
Offline Offline

Posts: 1714852741

View Profile Personal Message (Offline)

Ignore
1714852741
Reply with quote  #2

1714852741
Report to moderator
1714852741
Hero Member
*
Offline Offline

Posts: 1714852741

View Profile Personal Message (Offline)

Ignore
1714852741
Reply with quote  #2

1714852741
Report to moderator
Clark
Hero Member
*****
Offline Offline

Activity: 548
Merit: 502


So much code.


View Profile WWW
October 21, 2013, 09:09:05 PM
 #522

The API is very weak when not even MKT Orders are supported. Who cares about LMT?

Shameless self-promotion to follow:


The RTBTC platform supports trading with Bitstamp. Market orders are computed in real time and are sent as limit orders.

RTBTC thread here: https://bitcointalk.org/index.php?topic=248054.0

https://rtbtc.com/

genuise
Sr. Member
****
Offline Offline

Activity: 379
Merit: 250


View Profile WWW
October 21, 2013, 09:10:50 PM
 #523

Can you share any details on whethter your implementation support for bitstamp streaming api?

Clark
Hero Member
*****
Offline Offline

Activity: 548
Merit: 502


So much code.


View Profile WWW
October 21, 2013, 09:23:22 PM
 #524

Can you share any details on whethter your implementation support for bitstamp streaming api?

Bitstamp data is fully streaming at this time.

genuise
Sr. Member
****
Offline Offline

Activity: 379
Merit: 250


View Profile WWW
October 21, 2013, 09:26:43 PM
 #525

I mean you use bitstamp socket.io websocket interface or you get orderbook and trades via http polling?

Clark
Hero Member
*****
Offline Offline

Activity: 548
Merit: 502


So much code.


View Profile WWW
October 21, 2013, 09:31:38 PM
 #526

I mean you use bitstamp socket.io websocket interface or you get orderbook and trades via http polling?

Bitstamp changed to pusher.com.

Here is the code, from their home page:
Code:
var pusher = new Pusher('de504dc5763aeef9ff52');

var trades_channel = pusher.subscribe('live_trades');
trades_channel.bind('trade', update_index_live_trades);

var orders_channel = pusher.subscribe('live_orders');
orders_channel.bind('order_deleted', add_to_ws_queue);
orders_channel.bind('order_created', add_to_ws_queue);
orders_channel.bind('order_changed', add_to_ws_queue);

The streaming API is not documented.

genuise
Sr. Member
****
Offline Offline

Activity: 379
Merit: 250


View Profile WWW
October 21, 2013, 09:37:31 PM
 #527

wow! how interesting! thanks a lot

and there is no any guarantee that they won't change it the other day, or close?

hazek
Legendary
*
Offline Offline

Activity: 1078
Merit: 1002


View Profile
October 21, 2013, 10:14:12 PM
 #528

and there is no any guarantee that they won't change it the other day, or close?

There are no such plans at this time and I don't think we are likely to do so.

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
genuise
Sr. Member
****
Offline Offline

Activity: 379
Merit: 250


View Profile WWW
October 21, 2013, 10:18:44 PM
 #529

Hi, thank you.

any plans for short documentation on streaming api?

is it public? can we freely use it?

genuise
Sr. Member
****
Offline Offline

Activity: 379
Merit: 250


View Profile WWW
October 23, 2013, 09:17:59 AM
 #530

Hi, I managed to connect using Pusher client.

Will it take too much effort to add trade type (bid/ask) in trade stream messages?

I am asking because we at bitcoin-analytics.com store, process and display trades separately.

thank you in advance.

genuise
Sr. Member
****
Offline Offline

Activity: 379
Merit: 250


View Profile WWW
October 23, 2013, 12:00:10 PM
 #531

One more question, if you allow?

I am about to implement local orderbook state using streaming api.

My idea is first to cache enough depth messages. Then request full depth over http and apply depth messages filtered by the full orderbook timestamp.

The problem as I see it now is that full orderbook should be not grouped by price to see each order individually and to be able to apply depth messages to them also individually.

Each depth message contains unique order id and in theory this could help greatly cause it would allow identify each order in local orderbook and apply depth messages by order id. But full orderbook json does not contain any order id. In this case the only way to tell each order is using price as a unique key which is also impossible if I request ungrouped orderbook and get more than one order with the same price.

My question: is there any public http api  which allows to get full orderbook with order ids?
Is there a streaming api request which allows to get full orderbook with order ids?

Please advice what can be possible solution of the problems described above?

Clark, if you read this, please can you share your experience too?

btcticker
Full Member
***
Offline Offline

Activity: 131
Merit: 100


View Profile
October 23, 2013, 06:07:15 PM
 #532

Hi, thank you.

any plans for short documentation on streaming api?

is it public? can we freely use it?

I would like to know this as well. I've got it working, but don't want to make it live without permission, as obviously bitstamp are paying for this service.

Would it be possible to have some official word on whether or not we are allowed to make this feed available via our own websites? Thanks in advance.

DAN444
Full Member
***
Offline Offline

Activity: 158
Merit: 100


View Profile
October 23, 2013, 07:18:42 PM
 #533

Hi
I m trying to validate my bitstamp account.
My  electricity bill was refused for account validation because it is in electronic form.
They want a scan of a paper bill.
If I request a paper version of the bill from my electricity provider, all they ll do is print that very same electronic document and send it to me.

Then I ll scan it and end up sending exactly the same document as the first time (Same appearance, font, logos, colors..etc..).
In other words there s only one type of bill available. Electronic bill looks exactly the same as the paper bill.
So in other words I could just print the bill myself, scan it and send it to bitstamp.
I just dont see the point though.
tarrant_01
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500



View Profile
October 23, 2013, 07:38:50 PM
 #534

Hi
I m trying to validate my bitstamp account.
My  electricity bill was refused for account validation because it is in electronic form.
They want a scan of a paper bill.
If I request a paper version of the bill from my electricity provider, all they ll do is print that very same electronic document and send it to me.

Then I ll scan it and end up sending exactly the same document as the first time (Same appearance, font, logos, colors..etc..).
In other words there s only one type of bill available. Electronic bill looks exactly the same as the paper bill.
So in other words I could just print the bill myself, scan it and send it to bitstamp.
I just dont see the point though.

I just copied/pasted the text from my electric bill to a word doc then converted that to a pdf and sent it in. I got approved.

1P95gCUCw3Tjb7yyoYtW3ARZZQyTpFgk6H
philips
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500



View Profile
October 23, 2013, 07:43:33 PM
 #535

Hi
I m trying to validate my bitstamp account.
My  electricity bill was refused for account validation because it is in electronic form.
They want a scan of a paper bill.
If I request a paper version of the bill from my electricity provider, all they ll do is print that very same electronic document and send it to me.

Then I ll scan it and end up sending exactly the same document as the first time (Same appearance, font, logos, colors..etc..).
In other words there s only one type of bill available. Electronic bill looks exactly the same as the paper bill.
So in other words I could just print the bill myself, scan it and send it to bitstamp.
I just dont see the point though.

Make clear to them that it was in paper form before scanning, crumple it or make some coffee ring stains on...even let your dog chew it a bit. That will do.
DAN444
Full Member
***
Offline Offline

Activity: 158
Merit: 100


View Profile
October 23, 2013, 08:05:05 PM
 #536

Make clear to them that it was in paper form before scanning, crumple it or make some coffee ring stains on...even let your dog chew it a bit. That will do.
That's genuinely funny (and true)
Alpaca Bob
Full Member
***
Offline Offline

Activity: 153
Merit: 100


View Profile
October 24, 2013, 02:26:51 PM
 #537

This has probably been asked before, but are you guys planning on implementing EUR/BTC at some point? If not, why not? It seems to me like such a pointless exercise to use dollars instead of euro's since both you as well as most of your customers are surely European...

Cheers.

The Times 03/Jan/2009 Chancellor on brink of second bailout for banks
bernard75
Legendary
*
Offline Offline

Activity: 1316
Merit: 1003



View Profile
October 24, 2013, 03:57:39 PM
 #538

Do you know how much work that would be?
And dont try reason, that doesnt work.
Alpaca Bob
Full Member
***
Offline Offline

Activity: 153
Merit: 100


View Profile
October 24, 2013, 04:22:30 PM
 #539

Was that sarcasm? 'cause no, I actually have no idea how much work that would be...

The Times 03/Jan/2009 Chancellor on brink of second bailout for banks
phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
October 24, 2013, 09:56:19 PM
 #540

How long does the verification take? I'm waiting now for over 3,5 weeks...

Fewer than 24 hours for me in the UK.
How about now? Been waiting two days without answer...
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 ... 84 »
  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!