spinner
Newbie
Offline
Activity: 47
Merit: 0
|
|
May 23, 2013, 11:09:31 PM |
|
I think someone mentioned before that it probably should be displayed the other way around.
Strike - Premium = Price, instead of what it is right now with Strike + Premium = Price
There's a few places I need to fix that.
Wut??? Those two statements aren't equivalent.
|
|
|
|
lritter
Newbie
Offline
Activity: 9
Merit: 0
|
|
May 24, 2013, 07:53:00 AM |
|
I think someone mentioned before that it probably should be displayed the other way around.
Strike - Premium = Price, instead of what it is right now with Strike + Premium = Price
There's a few places I need to fix that.
Wut??? Those two statements aren't equivalent. I think he meant "cost" instead of "price". By the way: I can't place orders on the ASICMINER-PT, it keeps timing out because of a lock?
|
|
|
|
parseval
|
|
May 24, 2013, 08:32:50 AM Last edit: May 24, 2013, 08:43:56 AM by parseval |
|
Really? I haven't had any luck at all. I can fetch the URL to approve application access to my account, and when I approve it the page reloads again, this time with the verification string in the URL. When I take that string and try to use it in my program, the website API says that it's invalid. I'll see if I can find some other oauth code to work with and test it out, the stuff I'm using has worked fine on other sites but maybe something is off with the way it works with btct.co.
Here's the code I mentioned earlier on IRC: http://dpaste.com/hold/1197404/Just change the credentials at the top. This requires python 2.7 with a couple of dependencies (you'll get errors if they aren't there, just use pip to install them) This takes the consumer key and consumer secret and generates the other tokens. It will ask you to visit in the browser and grab the verification string, like you have been doing, then paste it back to the app to generate your oauth client secret. You should save those, since this authorization is only needed once and you can skip the verification steps in the future if you have these stored. I also put in an example of using the credentials to call the get_portfolio method to return your info. I'm actually having the exact opposite problem. It seems like the api is treating ALL callback_url as if they are oob. I place an url into the callback_url parameter, but it never hits my callback url.
|
|
|
|
ThickAsThieves
|
|
May 24, 2013, 08:33:55 AM |
|
Back to normal for a couple of minutes, then errors again. :O
I can't seem to post orders: Received Ask Order: 3 @ 2.579 BTC
Excessive wait trying to get lock on ASICMINER-PT.
|
|
|
|
burnside
Legendary
Offline
Activity: 1106
Merit: 1006
Lead Blockchain Developer
|
|
May 24, 2013, 10:54:51 AM |
|
Back to normal for a couple of minutes, then errors again. :O
I can't seem to post orders: Received Ask Order: 3 @ 2.579 BTC
Excessive wait trying to get lock on ASICMINER-PT. Of course it had to happen while I was on a plane. heh. There's per-asset locking to maintain integrity in the system. (eg, so only one trade goes through at a time, or so the order book doesn't get changed mid-trade.) Unfortunately there are still some situations where something fails, and the lock does not get removed. With the site in beta, I have to carefully inspect the logs when these failures happen, then address the issues in code. In this case, I believe it was an uncaught exception while talking to bitcoind on a trade. I've plugged in some code to address it. Hopefully that helps prevent it in the future. Cheers.
|
|
|
|
pietpatat
Newbie
Offline
Activity: 14
Merit: 0
|
|
May 24, 2013, 02:52:00 PM |
|
Hi burnside. My account is locked because I tried to login with wrong password to many times. What must I do to unlock it again?
|
|
|
|
gramma
|
|
May 24, 2013, 03:16:10 PM |
|
Hi burnside. My account is locked because I tried to login with wrong password to many times. What must I do to unlock it again?
IIRC, wait 15 minutes and try again.
|
BTC: 1MrNRPo7p8DEyxn87c9BCGwrbatBQeCHc1
|
|
|
gigantic
Member
Offline
Activity: 89
Merit: 10
|
|
May 24, 2013, 04:10:25 PM |
|
burnside i sent you a PM, please check, Thanks.
|
|
|
|
pietpatat
Newbie
Offline
Activity: 14
Merit: 0
|
|
May 24, 2013, 06:01:43 PM |
|
Hi burnside. My account is locked because I tried to login with wrong password to many times. What must I do to unlock it again?
IIRC, wait 15 minutes and try again. What does IIRC mean? I have waited 1 hour now and it is still locked.
|
|
|
|
TiuraZ
Member
Offline
Activity: 101
Merit: 10
|
|
May 24, 2013, 06:03:03 PM |
|
Hi burnside. My account is locked because I tried to login with wrong password to many times. What must I do to unlock it again?
IIRC, wait 15 minutes and try again. What does IIRC mean? I have waited 1 hour now and it is still locked. If I Remember Correctly
|
|
|
|
inh
|
|
May 24, 2013, 06:47:09 PM |
|
Really? I haven't had any luck at all. I can fetch the URL to approve application access to my account, and when I approve it the page reloads again, this time with the verification string in the URL. When I take that string and try to use it in my program, the website API says that it's invalid. I'll see if I can find some other oauth code to work with and test it out, the stuff I'm using has worked fine on other sites but maybe something is off with the way it works with btct.co.
Here's the code I mentioned earlier on IRC: http://dpaste.com/hold/1197404/Just change the credentials at the top. This requires python 2.7 with a couple of dependencies (you'll get errors if they aren't there, just use pip to install them) This takes the consumer key and consumer secret and generates the other tokens. It will ask you to visit in the browser and grab the verification string, like you have been doing, then paste it back to the app to generate your oauth client secret. You should save those, since this authorization is only needed once and you can skip the verification steps in the future if you have these stored. I also put in an example of using the credentials to call the get_portfolio method to return your info. I'm actually having the exact opposite problem. It seems like the api is treating ALL callback_url as if they are oob. I place an url into the callback_url parameter, but it never hits my callback url. The python code is working fine for me, so I assume it must be an issue with the oauth package i was using ( http://godoc.org/github.com/garyburd/go-oauth/oauth) and not with BTC-TC.
|
|
|
|
burnside
Legendary
Offline
Activity: 1106
Merit: 1006
Lead Blockchain Developer
|
|
May 24, 2013, 08:17:41 PM |
|
Here's the code I mentioned earlier on IRC: http://dpaste.com/hold/1197404/Just change the credentials at the top. This requires python 2.7 with a couple of dependencies (you'll get errors if they aren't there, just use pip to install them) This takes the consumer key and consumer secret and generates the other tokens. It will ask you to visit in the browser and grab the verification string, like you have been doing, then paste it back to the app to generate your oauth client secret. You should save those, since this authorization is only needed once and you can skip the verification steps in the future if you have these stored. I also put in an example of using the credentials to call the get_portfolio method to return your info. I'm actually having the exact opposite problem. It seems like the api is treating ALL callback_url as if they are oob. I place an url into the callback_url parameter, but it never hits my callback url. The python code is working fine for me, so I assume it must be an issue with the oauth package i was using ( http://godoc.org/github.com/garyburd/go-oauth/oauth) and not with BTC-TC. Whew. One less thing to worry about. Thank you for the update!
|
|
|
|
ThickAsThieves
|
|
May 24, 2013, 08:19:59 PM |
|
Feature request / Bugfix:
When I do Quick Fill, it should show the actual total to fill all orders between the first and last from where I clicked. Currently it only shows: X * exact-Quick-Fill-order-share-price
|
|
|
|
burnside
Legendary
Offline
Activity: 1106
Merit: 1006
Lead Blockchain Developer
|
|
May 24, 2013, 08:26:52 PM |
|
Hi burnside. My account is locked because I tried to login with wrong password to many times. What must I do to unlock it again?
IIRC, wait 15 minutes and try again. What does IIRC mean? I have waited 1 hour now and it is still locked. The login lockout is several hours. Can you try again now? Cheers.
|
|
|
|
burnside
Legendary
Offline
Activity: 1106
Merit: 1006
Lead Blockchain Developer
|
|
May 24, 2013, 08:36:42 PM |
|
Feature request / Bugfix:
When I do Quick Fill, it should show the actual total to fill all orders between the first and last from where I clicked. Currently it only shows: X * exact-Quick-Fill-order-share-price
This is a known issue. It's in the todo list to make the order placement interface aware of the order book when making estimates. I plan to setup an ajax request for the calculation because it drives me batty too. In the meantime, note that the values that pop up when hovering over the fill button are accurate. (they DO take into account all of the asks/bids up to that point.) Cheers.
|
|
|
|
pietpatat
Newbie
Offline
Activity: 14
Merit: 0
|
|
May 24, 2013, 08:42:26 PM |
|
Hi burnside. My account is locked because I tried to login with wrong password to many times. What must I do to unlock it again?
IIRC, wait 15 minutes and try again. What does IIRC mean? I have waited 1 hour now and it is still locked. The login lockout is several hours. Can you try again now? Cheers. Thanks it works now! I have another question: I have locked my withrawel to my btc24 account ( which is kind of out of business ), is it possible to change this adres?
|
|
|
|
dance4x
|
|
May 24, 2013, 10:10:27 PM |
|
burnside,
Please check your private messages for a message from me. I cannot login to my account. Thanks.
|
|
|
|
dexX7
Legendary
Offline
Activity: 1106
Merit: 1026
|
|
May 25, 2013, 03:14:51 AM |
|
Ideas: Trade: - Remove the "Calculate" button. The costs and fee seem to update anyway. - Add an option to fill the maximum quantity to buy or the quantity to sell based on balance or number of shares. I.e. balance is 23 BTC, the price you entered is 4 BTC, so this option should return an amount of 5. When selling, it's simply the total amount of sellable shares. Details: - Some visual feedback of the state of a motion would be nice: "starting soon", "in progress", "passed", "declined"
|
|
|
|
burnside
Legendary
Offline
Activity: 1106
Merit: 1006
Lead Blockchain Developer
|
|
May 25, 2013, 04:26:31 AM |
|
Hi burnside. My account is locked because I tried to login with wrong password to many times. What must I do to unlock it again?
IIRC, wait 15 minutes and try again. What does IIRC mean? I have waited 1 hour now and it is still locked. The login lockout is several hours. Can you try again now? Cheers. Thanks it works now! I have another question: I have locked my withrawel to my btc24 account ( which is kind of out of business ), is it possible to change this adres? Please submit a support request via the website. I can help you out from there. Cheers.
|
|
|
|
inh
|
|
May 25, 2013, 07:58:50 AM |
|
Here's the code I mentioned earlier on IRC: http://dpaste.com/hold/1197404/Just change the credentials at the top. This requires python 2.7 with a couple of dependencies (you'll get errors if they aren't there, just use pip to install them) This takes the consumer key and consumer secret and generates the other tokens. It will ask you to visit in the browser and grab the verification string, like you have been doing, then paste it back to the app to generate your oauth client secret. You should save those, since this authorization is only needed once and you can skip the verification steps in the future if you have these stored. I also put in an example of using the credentials to call the get_portfolio method to return your info. I'm actually having the exact opposite problem. It seems like the api is treating ALL callback_url as if they are oob. I place an url into the callback_url parameter, but it never hits my callback url. The python code is working fine for me, so I assume it must be an issue with the oauth package i was using ( http://godoc.org/github.com/garyburd/go-oauth/oauth) and not with BTC-TC. Whew. One less thing to worry about. Thank you for the update! OK so I lied Looks like the problem is that the RFC states that the server should accept an HTTP POST for the token request, however it only seems to work when the token is requested using a GET. Just to help clarify, the code gets a set of temporary credentials, then it uses those plus the verification string to request an access token for future use. I was trying to use the packages built in request-token method, which uses a POST per the standard. In order to get it to work I had to manually create the token request and send it using a GET. Hope that makes sense
|
|
|
|
|