Bitcoin Forum
April 19, 2024, 07:27:01 PM *
News: Latest Bitcoin Core release: 26.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 ... 84 »
  Print  
Author Topic: www.BITSTAMP.net Bitcoin exchange site for USD/BTC  (Read 231171 times)
TimJBenham
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
May 13, 2013, 02:26:42 PM
Last edit: May 17, 2013, 02:18:22 PM by TimJBenham
 #301

Has that blown out lately? When I deposited by wire a month or so ago the money was tradeable within three hours.

Do they accept deposits in £s? Or is it just €s?

I wired USD EUR from Australia to Slovenia in March. I since heard something about their changing to a UK bank, so their banking service may have gone to hell.

You are a warlord in the outskirts of the known world struggling to establish a kingdom in the wild lands.
1713554821
Hero Member
*
Offline Offline

Posts: 1713554821

View Profile Personal Message (Offline)

Ignore
1713554821
Reply with quote  #2

1713554821
Report to moderator
1713554821
Hero Member
*
Offline Offline

Posts: 1713554821

View Profile Personal Message (Offline)

Ignore
1713554821
Reply with quote  #2

1713554821
Report to moderator
1713554821
Hero Member
*
Offline Offline

Posts: 1713554821

View Profile Personal Message (Offline)

Ignore
1713554821
Reply with quote  #2

1713554821
Report to moderator
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713554821
Hero Member
*
Offline Offline

Posts: 1713554821

View Profile Personal Message (Offline)

Ignore
1713554821
Reply with quote  #2

1713554821
Report to moderator
1713554821
Hero Member
*
Offline Offline

Posts: 1713554821

View Profile Personal Message (Offline)

Ignore
1713554821
Reply with quote  #2

1713554821
Report to moderator
1713554821
Hero Member
*
Offline Offline

Posts: 1713554821

View Profile Personal Message (Offline)

Ignore
1713554821
Reply with quote  #2

1713554821
Report to moderator
Flaff
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
May 13, 2013, 06:42:18 PM
 #302

Does bitstamp have a public websocket/streaming API?
Also, are there any request limits to usual API?

Yes:

Code:
 var trades_socket = io.connect('https://websocket.bitstamp.net:8080/live_trades');
 var orders_socket = io.connect('https://websocket.bitstamp.net:8080/live_orders');

Yes:

 up to 1 per second

How do we use the Socket.IO API? There doesn't seem to be happening much besides a connected message when using this:

Code:
<script src="https://websocket.bitstamp.net:8080/socket.io/socket.io.js"></script>
<script>
    var conn = io.connect('https://websocket.bitstamp.net:8080/live_trades');

    conn.on('connect', function() {
        alert('Connected!');
    });

    conn.on('disconnect', function() {
        alert('Disconnected!');
    });

    conn.on('message', function(data) {
        alert('Got Something!');
    });

    conn.on('anything', function(data) {
        alert('Got Something!');
    });

    conn.on('error', function() {
        alert('Got Error!');
    });
</script>

Change your conn.on('message', to conn.on('trade'.

I'd really like to see non-https access to websocket too. I have problems using ruby gems to create a connection.

Thank you so much! Got some pretty cool charting working now Smiley. One question for the bitstamp guys:

Why do tid's sometimes increment with more then 1?
"tid": 245967
to
"tid": 245972

I'm new with socket.io and I don't seem get this to work..
There is also no documentation to be found about this websocket. Is this deceprated or something?
The socket.io.js returns the string 'Welcome to socket.io.'
This throws me a syntax error in the console because there is no JS.


Code:
<script src="https://websocket.bitstamp.net:8080/socket.io/socket.io.js"></script>
<script>
    var conn = io.connect('https://websocket.bitstamp.net:8080/live_trades');

    conn.on('connect', function() {
        alert('Connected!');
    });
</script>

I also allowed cross origin sharing before testing it by running chromium with the --disable-web-security command.
Googling for solutions didn't help, so I'm kind of stuck with the HTTP API for the moment.
dexX7
Legendary
*
Offline Offline

Activity: 1106
Merit: 1024



View Profile WWW
May 14, 2013, 02:51:01 AM
 #303

Does bitstamp have a public websocket/streaming API?
Also, are there any request limits to usual API?

Yes:

Code:
 var trades_socket = io.connect('https://websocket.bitstamp.net:8080/live_trades');
 var orders_socket = io.connect('https://websocket.bitstamp.net:8080/live_orders');

Yes:

 up to 1 per second

How do we use the Socket.IO API? There doesn't seem to be happening much besides a connected message when using this:

Code:
<script src="https://websocket.bitstamp.net:8080/socket.io/socket.io.js"></script>
<script>
    var conn = io.connect('https://websocket.bitstamp.net:8080/live_trades');

    conn.on('connect', function() {
        alert('Connected!');
    });

    conn.on('disconnect', function() {
        alert('Disconnected!');
    });

    conn.on('message', function(data) {
        alert('Got Something!');
    });

    conn.on('anything', function(data) {
        alert('Got Something!');
    });

    conn.on('error', function() {
        alert('Got Error!');
    });
</script>

Change your conn.on('message', to conn.on('trade'.

I'd really like to see non-https access to websocket too. I have problems using ruby gems to create a connection.

Thank you so much! Got some pretty cool charting working now Smiley. One question for the bitstamp guys:

Why do tid's sometimes increment with more then 1?
"tid": 245967
to
"tid": 245972

I'm new with socket.io and I don't seem get this to work..
There is also no documentation to be found about this websocket. Is this deceprated or something?
The socket.io.js returns the string 'Welcome to socket.io.'
This throws me a syntax error in the console because there is no JS.


Code:
<script src="https://websocket.bitstamp.net:8080/socket.io/socket.io.js"></script>
<script>
    var conn = io.connect('https://websocket.bitstamp.net:8080/live_trades');

    conn.on('connect', function() {
        alert('Connected!');
    });
</script>

I also allowed cross origin sharing before testing it by running chromium with the --disable-web-security command.
Googling for solutions didn't help, so I'm kind of stuck with the HTTP API for the moment.

I would be very very very happy to get this working, too.

newminer7950
Full Member
***
Offline Offline

Activity: 124
Merit: 100


View Profile
May 14, 2013, 07:23:01 PM
 #304

does site api is working? My bot cant load rates throught API during 20hours! Maybe my ip is blocked, becouse from another api is working.
What will i must to do? (i dont send queryes often, then one in 3sec)

Donations: 1BKA3FsvrZzznSJueXbx3qokHYqmwe9QQC
Flaff
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
May 14, 2013, 10:11:00 PM
 #305

When you get banned, you won't be able to visit bitstamp.net at all.
Every one of their pages will give you the banned message (900seconds=15minutes).
This happens for using the wrong login or for spamming their api.
giantdragon
Legendary
*
Offline Offline

Activity: 1582
Merit: 1002



View Profile
May 15, 2013, 04:11:25 PM
 #306

Is it possible to move USD to OKPay or MtGox?
evilscoop
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
May 16, 2013, 03:06:52 AM
 #307

Is it possible to move USD to OKPay or MtGox?

you can use bitinstant with a bitstamp coupon
giantdragon
Legendary
*
Offline Offline

Activity: 1582
Merit: 1002



View Profile
May 16, 2013, 04:31:02 AM
 #308

Is it possible to move USD to OKPay or MtGox?

you can use bitinstant with a bitstamp coupon
4% commission is just not worth! I will lose less on Bitstamp USD -> BTC -> MtGox USD -> OKPay.
evilscoop
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
May 16, 2013, 04:34:22 AM
 #309

commission changes with amount to move...


ie commission on 100usd is 0.89%

see https://www.bitinstant.com/fees

the 4% they put on the front is a false value
Pzi4nk
Member
**
Offline Offline

Activity: 70
Merit: 10


Move over clarinets, I'm getting on the band wagon


View Profile
May 16, 2013, 05:40:12 PM
 #310

Wow! Just signed up for a bitstamp account and so far I'm very impressed. (Which is to say they have a nice looking website. That's about all I can vouch for right now.)
CanadianGuy
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
May 17, 2013, 04:11:28 AM
 #311

No ripples available?  How is that possible?   Shocked Shocked Shocked Shocked
webr3
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
May 17, 2013, 12:04:58 PM
 #312

No ripples available?  How is that possible?   Shocked Shocked Shocked Shocked

That normally only happens when (a) a price rise is coming, of (b) there's no staff around who can deal with ripple (maybe they're at bitcoin conference).

You can still acquire XRP on secondary market at better prices though.
Pzi4nk
Member
**
Offline Offline

Activity: 70
Merit: 10


Move over clarinets, I'm getting on the band wagon


View Profile
May 17, 2013, 04:21:48 PM
 #313

Is there a way to get USD into Bitstamp besides a wire transfer?
juhakall
Sr. Member
****
Offline Offline

Activity: 657
Merit: 250


View Profile WWW
May 17, 2013, 09:10:44 PM
 #314

Is there a way to get USD into Bitstamp besides a wire transfer?

Ripple deposits & Bitstamp codes.

I'm currently developing an experimental social AI platform
zknf
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
May 19, 2013, 11:16:23 AM
 #315

bitstamp has a rich set of APIs, however it seems that ripple withdraw through API is still not possible now.
will this be implemented any time soon? it will be greatly appreciated Smiley
juhakall
Sr. Member
****
Offline Offline

Activity: 657
Merit: 250


View Profile WWW
May 19, 2013, 12:55:17 PM
 #316

bitstamp has a rich set of APIs, however it seems that ripple withdraw through API is still not possible now.
will this be implemented any time soon? it will be greatly appreciated Smiley

Speaking of the API, does anyone know how it works with two-factor authentication?

I'm currently developing an experimental social AI platform
dexX7
Legendary
*
Offline Offline

Activity: 1106
Merit: 1024



View Profile WWW
May 19, 2013, 02:02:02 PM
 #317

bitstamp has a rich set of APIs, however it seems that ripple withdraw through API is still not possible now.
will this be implemented any time soon? it will be greatly appreciated Smiley

Speaking of the API, does anyone know how it works with two-factor authentication?

It doesn't. API access skips 2FA. :/

extrememiner
Member
**
Offline Offline

Activity: 63
Merit: 10



View Profile
May 22, 2013, 05:07:54 PM
 #318

Hello
I made BTC withdrawal on May 21, 2013, 7:36 p.m. Status - Finished
Amount: 1.56490000 BTC, address: 1AZhQeWpCzK28Yhoqg6vWBZJ8ETUv3b8mK
Still not received.
My account ID 23897
Regards.
mmeijeri
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500

Martijn Meijering


View Profile
May 23, 2013, 04:26:02 PM
 #319

Bump. Several people are reporting problems withdrawing BTC and not getting updates on the situation from Bitstamp. I find this very disappointing.

ROI is not a verb, the term you're looking for is 'to break even'.
Seth Otterstad
Sr. Member
****
Offline Offline

Activity: 328
Merit: 250



View Profile
May 23, 2013, 04:54:57 PM
 #320

The bitstamp guys were at the bitcoin conference.  I vaguely remember them saying they were returning close to the end of the month.  It would not surprise me if they are not able to fix problems as well while they are in the US.

Seth Otterstad's Blog          @SethOtterstad on twitter          Seth on google+
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 ... 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!