Bitcoin Forum
May 14, 2024, 05:12:15 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 ... 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 78 79 80 81 82 83 84 »
  Print  
Author Topic: www.BITSTAMP.net Bitcoin exchange site for USD/BTC  (Read 231196 times)
Chancellor
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
January 22, 2014, 09:20:16 AM
 #1121

I don't think I can use the "open orders" api call.
Because maybe my order hasn't been processed yet.
It seems to me that when placing order call returns, the order is already processed, so either placed on the list of open orders, or executed immediately.

There is only an overview of user transactions. But how can i be sure that doesn't include open transactions.
In my opinion there is no such thing as "open transaction". Order is open, and when there is price match, transaction is exectued (it is a single time point event), then order is fulfilled. Every transaction has order id in its data. Of course larger orders may be executed in multiple transactions. My guess is that you sum all the transactions having your order id (if there are any). If they sum up to the whole order, it has been fully executed.

BTC: 1GRx2H5esyFTucZCt1eX9tjpoqfMrbVHMT
buciake
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
January 22, 2014, 09:41:42 AM
 #1122

I don't think I can use the "open orders" api call.
Because maybe my order hasn't been processed yet.
It seems to me that when placing order call returns, the order is already processed, so either placed on the list of open orders, or executed immediately.

There is only an overview of user transactions. But how can i be sure that doesn't include open transactions.
In my opinion there is no such thing as "open transaction". Order is open, and when there is price match, transaction is exectued (it is a single time point event), then order is fulfilled. Every transaction has order id in its data. Of course larger orders may be executed in multiple transactions. My guess is that you sum all the transactions having your order id (if there are any). If they sum up to the whole order, it has been fully executed.

Hi, thanks for your reply.

Let's have a look at the bitcoin withdrawal api.
The api will only return a boolean value (true or false).
The value is representing the transaction is placed or not.

But that not really useful information.
How will I ever be able to check the status of the transaction.
Chancellor
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
January 22, 2014, 10:09:34 AM
 #1123

Let's have a look at the bitcoin withdrawal api. The api will only return a boolean value (true or false). The value is representing the transaction is placed or not. But that not really useful information. How will I ever be able to check the status of the transaction.
I've only programmed a trading bot, so have not used withdrawal API. However, you may check what really is returned by bitcoin withdrawal request. It may be that it returns additional JSON formatted data. If not, your only option is to read the list of withdrawals, then match your one by timestamp, type, amount and destination bitcoin address. Then you have the status.

BTC: 1GRx2H5esyFTucZCt1eX9tjpoqfMrbVHMT
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
January 22, 2014, 10:12:18 AM
 #1124

I made a 30 BTC withdraw today, it always processed within 1 miniute.
But this time 5 hours passed and still "waiting to be processed".
I'm a little worried about it. Any one experienced such delay? for so long?

Yup made a similar withdraw today in size and it is still in the "waiting to be processed" stage.

Usually takes at most 5-10 minutes and it hits the block chain.

I've sent a support ticket in about this.


███████████████████████████████████████

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
buciake
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
January 22, 2014, 10:13:23 AM
 #1125

Let's have a look at the bitcoin withdrawal api. The api will only return a boolean value (true or false). The value is representing the transaction is placed or not. But that not really useful information. How will I ever be able to check the status of the transaction.
I've only programmed a trading bot, so have not used withdrawal API. However, you may check what really is returned by bitcoin withdrawal request. It may be that it returns additional JSON formatted data. If not, your only option is to read the list of withdrawals, then match your one by timestamp, type, amount and destination bitcoin address. Then you have the status.

Okay, thanks man I will check that.
Firebug24k
Member
**
Offline Offline

Activity: 66
Merit: 10


View Profile
January 23, 2014, 10:26:06 PM
 #1126

Made a wire transfer withdrawal, it was successfully deposited in my account (USD), except the amount was wrong.  Instead of 1785, I got 1758.  I suspect a typo of the last two digits - it's the only thing that make sense (swapped).  I opened a support ticket but am not hopeful on getting a resolution.  Has anyone seen anything like this before?
Chancellor
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
January 24, 2014, 05:13:51 AM
 #1127

Instead of 1785, I got 1758.  I suspect a typo of the last two digits
"International withdrawals will be charged with 0.09% fee, minimum fee is $15.00 on Bitstamps end and may incur additional international bank fees.". Maybe this? However in your case the missing 27 USD is about 1.5%, which is much more than 0.09%...

BTC: 1GRx2H5esyFTucZCt1eX9tjpoqfMrbVHMT
bitcoinmarketmaker
Member
**
Offline Offline

Activity: 89
Merit: 10


put me on speeddial#1


View Profile WWW
January 24, 2014, 06:30:12 AM
Last edit: January 24, 2014, 06:47:28 AM by bitcoinmarketmaker
 #1128

Has anyone seen anything like this before?

Yes, that is 15USD withdrawal fee and then the other 12 USD is the fee that your bank (and sometimes intermediary banks) charge for receiving. The fee that is charged by your receiving bank is not a fixed fee, it will be higher or lower depending on the amount.

best-miner.com
Full Member
***
Offline Offline

Activity: 123
Merit: 100

best-miner.com


View Profile WWW
January 24, 2014, 06:47:38 AM
 #1129

Your register is too complex for chinese people, some of our customers said they want to get a account in your website, but it may takes more than 1 month to prepare the document, hope you can find a solution to avoid so many document for international customers.

best-miner.com, bitcoin news & bitcoin miners
2T bitcoin miners for 2099$, 34M litecoin miners for 999$,
1T bitcoin miners for 1299$, World wide free shipping with DHL in 1 day.
buciake
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
January 24, 2014, 02:06:28 PM
 #1130

Let's have a look at the bitcoin withdrawal api. The api will only return a boolean value (true or false). The value is representing the transaction is placed or not. But that not really useful information. How will I ever be able to check the status of the transaction.
I've only programmed a trading bot, so have not used withdrawal API. However, you may check what really is returned by bitcoin withdrawal request. It may be that it returns additional JSON formatted data. If not, your only option is to read the list of withdrawals, then match your one by timestamp, type, amount and destination bitcoin address. Then you have the status.

The problem with the list of withdrawals is that there is no "destination bitcoin address" present.
There is no reliable way to check if the withdrawal request was successful.

I'm feel like im missing something here.  Huh Huh Huh
Because I just can't believe the api is so lacklustre.
Lauda
Legendary
*
Offline Offline

Activity: 2674
Merit: 2965


Terminated.


View Profile WWW
January 25, 2014, 08:46:39 AM
 #1131

Website is down? I can't get past incapsula.

"The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"
😼 Bitcoin Core (onion)
Chancellor
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
January 25, 2014, 08:50:29 AM
 #1132

Website is down? I can't get past incapsula.
Website + trading API as well (returns "503 Service Unavailable"). As a result Bitstamp is frozen since 08:02 UTC.

BTC: 1GRx2H5esyFTucZCt1eX9tjpoqfMrbVHMT
Rannasha
Hero Member
*****
Offline Offline

Activity: 728
Merit: 500


View Profile
January 25, 2014, 09:04:01 AM
 #1133

Website is down? I can't get past incapsula.

Quote
Due to upgrades and maintenance our site will be unavailable on Sat 25 Jan 2014, between 9:00 and 12:00 GMT+1. Thank you for understanding!
Twitter.com/Bitstamp

edit: Though it would be nice if web-services replace their front page with a static page showing such a maintenance-notice rather than people having to go to social media to find out.
lnternet
Sr. Member
****
Offline Offline

Activity: 299
Merit: 253


View Profile
January 25, 2014, 09:39:52 AM
 #1134

would be nice if web-services replace their front page with a static page showing such a maintenance-notice
most certainly

1ntemetqbXokPSSkuHH4iuAJRTQMP6uJ9
F-bernanke
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
January 25, 2014, 09:45:36 AM
 #1135

I hope they are upgrading there servers, the 10sec+ orderbook lag is horrible, your basicly trading blind.
chipbike
Newbie
*
Offline Offline

Activity: 43
Merit: 0



View Profile WWW
January 25, 2014, 12:15:51 PM
 #1136

Someone is experiencing problems with e-mail in Bitstamp. I've tried to withdrawal Bitcoins, but it looks like their e-mail system ins not working. I need to do a confirmation of the withdrawal by clicking the link, but the e-mail never arrives.

Anyone?
chipbike
Newbie
*
Offline Offline

Activity: 43
Merit: 0



View Profile WWW
January 25, 2014, 04:35:27 PM
 #1137

It is working again  Grin
GodHatesFigs
Full Member
***
Offline Offline

Activity: 557
Merit: 101



View Profile
January 30, 2014, 06:36:01 PM
 #1138

Is it possible to deposit GBP? Would I be charged for the conversion to USD?
hazek
Legendary
*
Offline Offline

Activity: 1078
Merit: 1002


View Profile
January 30, 2014, 07:33:18 PM
 #1139

Is it possible to deposit GBP? Would I be charged for the conversion to USD?

We can accept any currency which is then automatically converted by our bank into USD, free of charge, at their daily exchange rate spreads which you can examine here: http://www.unicreditbank.si/tecajna_lista/?t=1&id_menu=&language=ENG

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
js1985
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
January 31, 2014, 09:11:38 PM
 #1140

Hi just wondering is email support closed at weekends? is there a phone to ring about an issue?

Thanks for great service so far
Pages: « 1 ... 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 78 79 80 81 82 83 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!