Bitcoin Forum
June 27, 2024, 03:24:27 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 361 »
  Print  
Author Topic: [OFFICIAL]Bitfinex.com first Bitcoin P2P lending platform for leverage trading  (Read 723640 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Timetwister
Legendary
*
Offline Offline

Activity: 1199
Merit: 1047


View Profile
January 14, 2014, 12:58:18 PM
 #1461

Adding an "Interest Paid" column for each loan closed, would help for accountability. And having those details reflect in History as "Closed Offers".

We should have a loans history, to be able to check how much time each of them did last, how much interest each of them generated, etc.
dahongfei
Member
**
Offline Offline

Activity: 100
Merit: 13


View Profile
January 14, 2014, 02:25:47 PM
 #1462

Adding an "Interest Paid" column for each loan closed, would help for accountability. And having those details reflect in History as "Closed Offers".

We should have a loans history, to be able to check how much time each of them did last, how much interest each of them generated, etc.

+1
skovbitcoin
Full Member
***
Offline Offline

Activity: 532
Merit: 100



View Profile
January 14, 2014, 02:26:33 PM
 #1463


Has anyone had any experience of accessing the API via C++. I have zero experience with js or python, but am fine with C++ and would like to access the data using the API? Even some code to literally print the bid and ask price would be a tremendously helpful starting point for me Smiley

Thanks

Further to my previous question, what is the acceptable frequency limit for API requests to check price etc.?

Thanks

Mark
bjornw
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile WWW
January 14, 2014, 04:18:30 PM
 #1464

Further to my previous question, what is the acceptable frequency limit for API requests to check price etc.?

+1 I was wondering the same thing, I want to add some real time features to my website, but I don't know how often I can poll the api. once a second? once a minute? Maybe Giancarlo can shed some light on this.

http://www.bfxdata.com Bitfinex Swap (Lending) Charts and Orderbook pages. Bitfinex referrer code UttOzlC1zZ (10% fee discount for 30 days)
nmersulypnem
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
January 14, 2014, 04:45:16 PM
 #1465


+1 I was wondering the same thing, I want to add some real time features to my website, but I don't know how often I can poll the api. once a second? once a minute? Maybe Giancarlo can shed some light on this.

cool website... any other websites doing USD lending that we can compare your numbers to?
bjornw
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile WWW
January 14, 2014, 04:51:53 PM
 #1466

Not that I know of, that was the whole reason why I built it. All data comes from the bitfinex api

http://www.bfxdata.com Bitfinex Swap (Lending) Charts and Orderbook pages. Bitfinex referrer code UttOzlC1zZ (10% fee discount for 30 days)
skovbitcoin
Full Member
***
Offline Offline

Activity: 532
Merit: 100



View Profile
January 14, 2014, 05:43:54 PM
 #1467


+1 I was wondering the same thing, I want to add some real time features to my website, but I don't know how often I can poll the api. once a second? once a minute? Maybe Giancarlo can shed some light on this.

cool website... any other websites doing USD lending that we can compare your numbers to?

I agree, a fine website, very useful. I like the interface! Smiley What frequency are you currently using to poll the API...as presumably you aren't getting blocked! Smiley
bjornw
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile WWW
January 14, 2014, 05:48:03 PM
 #1468

I agree, a fine website, very useful. I like the interface! Smiley What frequency are you currently using to poll the API...as presumably you aren't getting blocked! Smiley

Once a minute for different parameters.

http://www.bfxdata.com Bitfinex Swap (Lending) Charts and Orderbook pages. Bitfinex referrer code UttOzlC1zZ (10% fee discount for 30 days)
skovbitcoin
Full Member
***
Offline Offline

Activity: 532
Merit: 100



View Profile
January 14, 2014, 05:52:23 PM
 #1469

I agree, a fine website, very useful. I like the interface! Smiley What frequency are you currently using to poll the API...as presumably you aren't getting blocked! Smiley

Once a minute for different parameters.

Cool, well that gives me a good starting point whilst I await Giancarlo's input Smiley Ta!
Ichthyo
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
January 14, 2014, 11:18:07 PM
 #1470

Has anyone had any experience of accessing the API via C++. I have zero experience with js or python, but am fine with C++ and would like to access the data using the API?

If you need to get just the data (as opposed to do trading via the API): getting data is easy, since it is just a HTTP request. You get a string as response, which is formatted in JSON format. You can try out retrieving data from the API just with the "wget" command of unix. JSON format is human readable.

Not sure if C++ is the most clever choice, since there aren't so much easy to use libraries for doing this kind of stuff (i.e. pulling some web page via HTTPS and parsing a JSON string). Chances are that you'll end up writing hundreds of LOC for things you can do in other languages with just 10 lines of code. If you're familiar with C++, maybe you should consider to learn a bit Java, since Java is also a compiled and statically typed OO language, but offers an abundance of ready-to use libraries and tutorials. (Unless of course you have other reasons for using C++ beyond just familiarity)
whatthesith
Copper Member
Member
**
Offline Offline

Activity: 301
Merit: 10

simply getting the job done


View Profile
January 15, 2014, 04:10:54 AM
 #1471

I have developed a PHP class for accessing Bitfinex lending API.

Note that not all type of requests (from https://www.bitfinex.com/pages/api) are implemented,

But it should be intuitive and easy enough to add new methods if you know how to program in PHP.

http://pastebin.com/VXMsBwXU





Mycro Jobs                                                                                                                                                                                                   
| SIMPLY GETTING THE JOB DONE
⟩                                                                                                                                                     
                                                           ⟩⟩ Telegram ⟩⟩ Twitter ⟩⟩ Medium ⟩⟩ Github ⟩⟩ Instagram ⟩⟩ LinkedIn ⟩⟩ YouTube ⟩⟩ Facebook
bjornw
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile WWW
January 15, 2014, 07:46:23 AM
 #1472

I have developed a PHP class for accessing Bitfinex lending API.

Note that not all type of requests (from https://www.bitfinex.com/pages/api) are implemented,

But it should be intuitive and easy enough to add new methods if you know how to program in PHP.

http://pastebin.com/VXMsBwXU


Nice, was on my todo list Smiley Thanks!

http://www.bfxdata.com Bitfinex Swap (Lending) Charts and Orderbook pages. Bitfinex referrer code UttOzlC1zZ (10% fee discount for 30 days)
Ente
Legendary
*
Offline Offline

Activity: 2126
Merit: 1001



View Profile
January 15, 2014, 09:35:17 AM
 #1473

question about autolending @ flash return rate:

are there any fees for using the autolend feature?
are there any fees for using 'flash return rate'?

also, how often is interest on these loans credited to my balance? if, for example, I lent money for 2 days but the borrower only uses these funds for 1 hour and then closes his position, do I get a full-day's interest (is the full-day's interest incorporated into the first position the borrower opens)?
if I lend my money for 30 days, will the interest be automatically lent out even before that 30 day period is over?
also I've noticed that sometimes I can borrow funds for a 30 day period, open and close a position within an hour, and on the liquidity swaps page it says I'm currently not borrowing anything, but I am still able to open another position seemingly with the same funds. does this mean that I have these funds available for the entire 30 day period and am paying interest, or are the funds re-loaned out in the market whenever I close my position?

any answers to any questions are much appreciated! thanks! Smiley

No additional fees for autolend/flash.
You only pay fees for the time the funds are actually lent. As soon as it's closed/returned, no more fees are paid. A few days ago this was adjusted so that the first hour is always paid, even when the funds are returned after a minute.
Fees are paid out at midnight.

Ente
lawyb
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 15, 2014, 10:18:42 AM
Last edit: January 15, 2014, 10:39:53 AM by lawyb
 #1474

Hi all

I am new on the Bitfinex trading platform. I have been having problems logging in since I wired USD into the account and received notification of USD in it (since the day before).

I sent an email to support yesterday, but haven't received any replies yet.

Funny thing is, I could log on yesterday evening after 3 h of trying, but then am having the same issues today. Reseting the password does not help (and I think I found a bug here), an email gets sent to my account, but if you click on the reset link in the email it takes you to a page that again prompts you to reset your password. That then again sends an email to your inbox to again click on the link to reset password so you get stuck in a loop.

I hope it's not something I'm doing wrong, but as I have just transferred money in, I'm worried about not being able to access anything.

Has this happened to any of you?

Thanks in advance.

**update - I have since received an email with a new password, enabling me to log in. I think the password reset bug above may still need to be fixed, though. Otherwise, I'm a happy camper!**
Arthur Randolph
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
January 15, 2014, 10:08:46 PM
 #1475

Anyone knows how to get the current amount of borrow/lend at FRR through the API? It doesn't appear in the calls to lendbook/.
bjornw
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile WWW
January 16, 2014, 07:21:08 AM
 #1476

Anyone knows how to get the current amount of borrow/lend at FRR through the API? It doesn't appear in the calls to lendbook/.

Don't think that's possible. As far as I have figured out you can only get the total amount of open loans + the average rate of total loans opened at fixed rates. I don't think (correct me if i'm wrong) there is any option to get the total amount of borrow/lend at FRR.

http://www.bfxdata.com Bitfinex Swap (Lending) Charts and Orderbook pages. Bitfinex referrer code UttOzlC1zZ (10% fee discount for 30 days)
gog1
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile
January 17, 2014, 04:24:34 AM
 #1477

I don't see bitstamp orders listed on level 2 order book, problems?
bjornw
Full Member
***
Offline Offline

Activity: 152
Merit: 100


View Profile WWW
January 17, 2014, 10:11:48 AM
 #1478

I don't see bitstamp orders listed on level 2 order book, problems?

seems fine here

http://www.bfxdata.com Bitfinex Swap (Lending) Charts and Orderbook pages. Bitfinex referrer code UttOzlC1zZ (10% fee discount for 30 days)
mccoyspace
Full Member
***
Offline Offline

Activity: 237
Merit: 101


View Profile WWW
January 17, 2014, 05:46:11 PM
 #1479

Can't connect right now. Getting to an Encapsula page (some kind of web cache service)

*edit: now working. Nothing to see here
aminorex
Legendary
*
Offline Offline

Activity: 1596
Merit: 1029


Sine secretum non libertas


View Profile
January 17, 2014, 05:55:49 PM
 #1480

Can't connect right now. Getting to an Encapsula page (some kind of web cache service)

*edit: now working. Nothing to see here

Webserver has been truly awful, basically unusable, for about half an hour (or at least it seems that long).

EDIT: And *pong* it's up and dandy now.

Give a man a fish and he eats for a day.  Give a man a Poisson distribution and he eats at random times independent of one another, at a constant known rate.
Pages: « 1 ... 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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 361 »
  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!