Bitcoin Forum
May 01, 2024, 01:49:40 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 [188] 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 ... 361 »
  Print  
Author Topic: [OFFICIAL]Bitfinex.com first Bitcoin P2P lending platform for leverage trading  (Read 723558 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.
Sukrim
Legendary
*
Offline Offline

Activity: 2618
Merit: 1006


View Profile
July 07, 2014, 08:51:36 AM
 #3741

If you offer for e.g. 30 days someone can borrow it for 5 days.

https://www.coinlend.org <-- automated lending at various exchanges.
https://www.bitfinex.com <-- Trade BTC for other currencies and vice versa.
1714571380
Hero Member
*
Offline Offline

Posts: 1714571380

View Profile Personal Message (Offline)

Ignore
1714571380
Reply with quote  #2

1714571380
Report to moderator
1714571380
Hero Member
*
Offline Offline

Posts: 1714571380

View Profile Personal Message (Offline)

Ignore
1714571380
Reply with quote  #2

1714571380
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.
Ente
Legendary
*
Offline Offline

Activity: 2126
Merit: 1001



View Profile
July 07, 2014, 11:19:18 AM
 #3742

If you offer for e.g. 30 days someone can borrow it for 5 days.

..and can close it at any moment anyway.

Ente
DoubleSwapper
Full Member
***
Offline Offline

Activity: 172
Merit: 100


View Profile
July 07, 2014, 03:06:08 PM
 #3743

If you offer for e.g. 30 days someone can borrow it for 5 days.
Sure, but have you ever seen a swap that was specifically taken for a single day WITH the countdown for being returned set to 24 hours? The swap is now already returned. So it was just like I had put in "1 day" as a period. Never seen this before.
 
Sukrim
Legendary
*
Offline Offline

Activity: 2618
Merit: 1006


View Profile
July 07, 2014, 03:17:00 PM
 #3744

Could be someone having only 1 day left on their position and cycling through loans.

https://www.coinlend.org <-- automated lending at various exchanges.
https://www.bitfinex.com <-- Trade BTC for other currencies and vice versa.
Wolke
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
July 07, 2014, 03:20:42 PM
 #3745

Hey

I have played around a lot and tried to have then found some on the internet which partly also works well, but i've got a problem.

It's about the Api Bitfinex.com, and although I would like to retrieve via the Api the "last trade" or by trading.

Link: bitfinex.com/pages/api


In the method: GET, with api_path = "/ v1/symbols", it works.

But if I used something else it stops working.

Error: The remote server returned an error: (400) Bad Request.


sry for the english  Wink

anybody can help me / us ?

Code:
VB.NET-Quellcode

    ​
    Public Shared api_url As String = "https://api.bitfinex.com/"
    Public Shared api_key As String = "CodeCodeCode"
    Public Shared api_secret As String ="CodeCodeCode"
    Public Shared api_path As String = "/v1/symbols"
    'Public Shared api_path As String = "/v1/account_infos"
    Public Function check_balance()
    Dim payLoadobject As New PayLoad()
    Dim MySerializer As JavaScriptSerializer = New JavaScriptSerializer()
    Dim payloadJson As String = MySerializer.Serialize(payLoadobject)
    Dim payload As String = Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(payloadJson))
    Dim encoding As New System.Text.ASCIIEncoding()
    Dim getmessageBytes As Byte() = encoding.GetBytes(payload)
    Dim secretByte As Byte() = encoding.GetBytes(api_secret)
    Dim gethmacsha384 As New HMACSHA384(secretByte)
    Dim hashmessage As Byte() = gethmacsha384.ComputeHash(getmessageBytes)
    Dim finalString As New StringBuilder()
    For i As Integer = 0 To hashmessage.Length - 1
    finalString.Append(hashmessage(i).ToString("X2"))
    Next
    Dim SIGNATURE As String = finalString.ToString()
    Dim request As HttpWebRequest
    Dim nurl As String = api_url + api_path
    Dim address As Uri = New Uri(nurl)
    request = DirectCast(WebRequest.Create(address), HttpWebRequest)
    request.Accept = True
    request.Method = "GET" 'POST or GET
    request.Headers("X-BFX-APIKEY") = api_key
    request.Headers("X-BFX-PAYLOAD") = payload
    request.Headers("X-BFX-SIGNATURE") = SIGNATURE
    request.AllowAutoRedirect = True
    request.AllowWriteStreamBuffering = True
    request.KeepAlive = True
    Dim response As HttpWebResponse = Nothing
    Dim reader As StreamReader = Nothing
    Dim result As String = Nothing
    Try
    response = DirectCast(request.GetResponse(), HttpWebResponse)
    reader = New StreamReader(response.GetResponseStream())
    result = reader.ReadToEnd()
    Catch ex As Exception
    Return ex.Message.ToString()
    Finally
    If Not response Is Nothing Then response.Close()
    End Try
    Return result
    End Function
    Public Class coptions
    Public hostname As String = "https://api.bitfinex.com/"
    Public port As String = "443"
    Public path As String
    Public method As String = "GET" 'POST OR GET
    End Class
    Public Class PayLoad
    Public request As String = api_path
    Public nonce As String = Convert.ToInt64((DateTime.Now - New DateTime(1970, 1, 1)).TotalMilliseconds)
    Public options As New coptions
    End Class


Sukrim
Legendary
*
Offline Offline

Activity: 2618
Merit: 1006


View Profile
July 07, 2014, 03:24:21 PM
 #3746

It usually helps to check with something like wireshark how your request actually looked like.

https://www.coinlend.org <-- automated lending at various exchanges.
https://www.bitfinex.com <-- Trade BTC for other currencies and vice versa.
Ente
Legendary
*
Offline Offline

Activity: 2126
Merit: 1001



View Profile
July 07, 2014, 03:26:44 PM
 #3747

Could be someone having only 1 day left on their position and cycling through loans.

Well, no, then the loan would have its regular, full length displayed, and would have been closed and returned  at some point.

Ente
theonewhowaskazu
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


View Profile
July 07, 2014, 03:42:22 PM
 #3748

So, today I try logging in, it says my password is wrong. I try resetting the password, it says no such email. But I logged in with this email just yesterday. So I made a test account, and I can see no way for an email to be changed thru the interface. So even if I was hacked, I don't see how this is possible. Any ideas re: just what the hell is going on?

Sukrim
Legendary
*
Offline Offline

Activity: 2618
Merit: 1006


View Profile
July 07, 2014, 06:06:02 PM
 #3749

Send a mail to the support address (ideally from the email address you used for your account) asap and notify them. This is not the Bitfinex support forum...

https://www.coinlend.org <-- automated lending at various exchanges.
https://www.bitfinex.com <-- Trade BTC for other currencies and vice versa.
richmke
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
July 07, 2014, 07:24:08 PM
 #3750

Question about "Flash Return Rate". Is the rate fixed at the time of borrowing? Or, if I borrow for 2 days, and on the 2nd day the rate changes, I get the new rate that day?
Sukrim
Legendary
*
Offline Offline

Activity: 2618
Merit: 1006


View Profile
July 07, 2014, 07:28:01 PM
 #3751

It is never fixed, it is dynamic. I'm not 100% sure how in the end it is calculated, since interest is most likely calculated by the hour, I would guess they take the average of the FRRs of the last hour sampled by some timeslot, maybe every minute or second (or the one at the end of the hour?) and then start adding up.

If FRR crashes while you have loans out there, you're out of luck, on the other hand if demand rises and the FRR goes up, you are lucky and get better rates without doing anything.

https://www.coinlend.org <-- automated lending at various exchanges.
https://www.bitfinex.com <-- Trade BTC for other currencies and vice versa.
suyvv
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
July 08, 2014, 03:19:06 AM
 #3752

Has anyone encounter withdrawal issue recently? I cannot withdraw ltc AGAIN! It happens almost every time I do a withdrawal recently! After clicking the confirmation link in the email, it displays a 'pending review' or 'processing' and there's NO button to cancel! Sometimes it'll lock the coins for more than a day and you cannot unlock them without contacting support! WTF! Can the bitfinex guys fix this thing by just adding a cancel button? At least give a button to cancel the withdraw rather than lock all the coins, I cannot sell or withdraw them and I already lost money because of that!!
An old pal
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
July 08, 2014, 09:36:34 AM
 #3753

Raphael/Giancarlo

Lets assume, some traders default on their loans, the loss being considerable amount that bitfinex alone cannot absorb it.

Who will bear the loss?


The Unfortunate Individual Lenders

 
If so, how will the lender know for certain that his loans were defaulted and not some other users?


Collective Lenders

Will the loss be divided to all active swaps of that asset class?

As lending is a blind act, one cannot chose which trader/ pair to allocate to, wouldn't that option be more fair and less damaging overall?

Dalmar
Hero Member
*****
Offline Offline

Activity: 1092
Merit: 500

Life is short, practice empathy in your life


View Profile
July 08, 2014, 12:38:56 PM
 #3754

In most cases margin calls would simply prevent this. If margin calls can't prevent it, there must be something wrong with the wider market and a whole bunch of lenders/traders are affected. So, the collective scenario is more likely.


▄▄▄▄▄▄▄▄▄▄▄
▄▄████████████████▄
▄▄██████████████████████▄
 █████████████▀█████████████▄
▄█████████████▀ ▄█▀ ███████████
▄██████████      ▀▀  ████████████
▄█████████████   ▄▄▄   ▀▀██████████
█████████████▀   ████▄   ▀█████████▄
█████████████    ▀▀█▀▀   ▄██████████
████████████▀   ▄▄      ████████████
████████████   ▄████▄    ███████████
█████████      ██████    ██████████
█████████▄▄            ▄██████████
▀██████████  ██  ▄▄▄▄████████████
▀█████████▄▄█▄ ███████████████▀
▀██████████████████████████▀
▀█████████████████████▀
▀▀██████████████▀▀
▀▀▀▀▀▀▀

B i t c o i n t a l k   ▄▄▄▄▄

DONATION CAMPAIGN

                                     ▄
                                   ▄██
               ▄▄▄▄▄▄▄           ▄███
             ▄█████████▄        ████
▄▄▄         ▄████████████     ▄████▀
 ▀██▄▄      █████████████   ▄█████▀
  ▀█████▄   █████████████  ▄██████
    ▀█████▄  ███████████▀▄███████
     ▀██████▄▄▀▀██████▀ ████████▀
       ████████▄      ▄████████▀
        █████████▄  ▄██████████
         █████████████████████
          ████████████████████
          ███████████████████
          ███████████████████
          ██████████████▀▀▀
          ███████▀▀▀▀
          ▀▀▀▀

BE A HOPE
FOR A LIVABLE WORLD
▄▄▄█████████▄▄▄
▄▄███████████████████▄▄
▄▄█████████████████████████▄▄
▄███████████████████████████████▄
▄█████████████████████████████████▄
████████████▀▀▀▀▀██████▀▀▀▀██████████
███████████▀       ▀█▀       ▀█████████
███████████▀                    █████████
███████████                     █████████
█████████████                   ███████████
██████████████▄               ▄████████████
████████████████▄▄▄         ▄█▀▀   ████████
███████████▀▀     ▀▀█▄▄▄▄▄▄██     ▄████████
██████▀█▄                ▀▀▀█▄ ▄█████████
██████▄ █▄          ▄▄▄▄▄▄▄▀▀▄███████████
██████▄ ▀█                ▄████████████
██████▄  ██████▄▄▄    ▄██████████████
▀██████▄██████████████████████████▀
▀███████████████████████████████▀
▀▀█████████████████████████▀▀
▀▀███████████████████▀▀
▀▀▀█████████▀▀▀

ONE

little

HELP CHANGES
EVERYTHING

..DONATE..
sleger
Full Member
***
Offline Offline

Activity: 167
Merit: 100


View Profile
July 08, 2014, 06:56:35 PM
 #3755

Raphael/Giancarlo

Lets assume, some traders default on their loans, the loss being considerable amount that bitfinex alone cannot absorb it.

Who will bear the loss?


The Unfortunate Individual Lenders

 
If so, how will the lender know for certain that his loans were defaulted and not some other users?


Collective Lenders

Will the loss be divided to all active swaps of that asset class?

As lending is a blind act, one cannot chose which trader/ pair to allocate to, wouldn't that option be more fair and less damaging overall?



No, it should be the first case I hope, the individual affected lender
Oldsonofabit
Member
**
Offline Offline

Activity: 69
Merit: 10


View Profile
July 08, 2014, 06:58:35 PM
 #3756

Delete this post if it's against the rules but does anyone have a Bitfinex referral code to share? I'm opening an account and would like the reduced trade fee benefit. Thank you.
Oldsonofabit
Member
**
Offline Offline

Activity: 69
Merit: 10


View Profile
July 08, 2014, 07:03:24 PM
 #3757

Delete this post if it's against the rules but does anyone have a Bitfinex referral code to share? I'm opening an account and would like the reduced trade fee benefit. Thank you.

Nevermind, I found one in someone's signature line. Thanks!
BitBits
Full Member
***
Offline Offline

Activity: 144
Merit: 100


View Profile
July 09, 2014, 08:44:57 AM
 #3758

...With that said, all ideas are welcome to ensure that unused swaps are not used for manipulation. We could double charge the closing of unused swaps without using them (but it would penalize legitimate use as well). We could prevent closing unused swaps manually (ie you can only use your swaps in a margin position or let it expires until the end of its period). What else?

Or we can just wait for people to realize costs/benefits of manipulation has become too high.

Anyway thank you for your analysis and have a good day
Raphael
The last time I checked, it was possible to move all of the funds from trading wallet (where one needs funds to borrow swaps) to deposit wallet (where one needs funds to lend swaps), even though there are still unused and not closed borrowed swaps. So, just block that.
It actually makes sense and is not "in a way" for regular system use. Thus, if one decided to trade, have funds in trading wallet and borrowed swaps, he then cannot move the corresponding (!!!) amount to deposit wallet, before closing those borrowed swaps (subject to 1 hour minimum).

Empty
BitBits
Full Member
***
Offline Offline

Activity: 144
Merit: 100


View Profile
July 09, 2014, 10:51:09 AM
 #3759

Question to Bitfinex team:
Why the bid/ask prices on the order book are not shown in dollars and cents? Seems like a common sense.
This practically voids a very useful functionality of pre-filling the order, by clicking on the offer.
Example: the bid offer of $622.6 per BTC will not get filled when clicked on it and ordered, because in reality it is a 622.56 (it is just rounded on the order book to 622.6).
One has to use third party sites to see what the real bid/ask to place the exactly matching orders and this can be a hassle.

What was the rationale behind removing the cents? Can we have two decimals back?

Empty
trilogy456
Member
**
Offline Offline

Activity: 69
Merit: 10


ASICMINER shares: Havelockinvestments.com


View Profile
July 09, 2014, 11:19:13 AM
 #3760

Question to Bitfinex team:
Why the bid/ask prices on the order book are not shown in dollars and cents? Seems like a common sense.
This practically voids a very useful functionality of pre-filling the order, by clicking on the offer.
Example: the bid offer of $622.6 per BTC will not get filled when clicked on it and ordered, because in reality it is a 622.56 (it is just rounded on the order book to 622.6).
One has to use third party sites to see what the real bid/ask to place the exactly matching orders and this can be a hassle.

What was the rationale behind removing the cents? Can we have two decimals back?
There is a "plus or minus" button that you can use to zoom in or out of the orderbook.  It is useful to be able to see deeper into the orderbook.  The zoom applies to both Bid and Ask side at the same time.

******ASICMINER T U B E - The Best $/Gh Bitcoin Miner So Far. DISCOVER NOW !!!******
https://bitcointalk.org/index.php?topic=735728.0/
Pages: « 1 ... 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 [188] 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 ... 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!