Bitcoin Forum
May 22, 2024, 05:58:35 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 361 »
  Print  
Author Topic: [OFFICIAL]Bitfinex.com first Bitcoin P2P lending platform for leverage trading  (Read 723577 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.
nmersulypnem
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
December 19, 2013, 01:18:44 AM
 #1121

Is it possible to apply a discount code to my account?  I missed where to add it when signing up, and now I don't see it in the account options... Sad
TwinWinNerD
Legendary
*
Offline Offline

Activity: 1680
Merit: 1001


CEO Bitpanda.com


View Profile WWW
December 19, 2013, 11:28:52 AM
Last edit: December 26, 2013, 03:00:19 PM by TwinWinNerD
 #1122

Removed because the problem were not existent, and i am not a clever man Smiley

Ente
Legendary
*
Offline Offline

Activity: 2126
Merit: 1001



View Profile
December 19, 2013, 12:35:07 PM
 #1123

Hi Giancarlo,

I am sure that is just an honest mistake, thats why i will show you in detail, why i am 100% certain that there is an error on you side.

Well, that's basically what Giancarlo said: Servers are upgraded, more than one database active, there will be short-term discrepancies in the numbers. Hold still for one, two days, until it's all migrated.
There's a sheduled downtime exactly for this, you see:

Quote
Our platform will be migrated the 19th of December, at 16:00 GMT, for a downtime of 30 minutes. Thank you for your comprehension.
[/color]

So, I take the freedom to answer this: Hold still, things will be resolved shortly.

Ente
TwinWinNerD
Legendary
*
Offline Offline

Activity: 1680
Merit: 1001


CEO Bitpanda.com


View Profile WWW
December 19, 2013, 12:40:00 PM
 #1124

Hi Giancarlo,

I am sure that is just an honest mistake, thats why i will show you in detail, why i am 100% certain that there is an error on you side.

Well, that's basically what Giancarlo said: Servers are upgraded, more than one database active, there will be short-term discrepancies in the numbers. Hold still for one, two days, until it's all migrated.
There's a sheduled downtime exactly for this, you see:

Quote
Our platform will be migrated the 19th of December, at 16:00 GMT, for a downtime of 30 minutes. Thank you for your comprehension.
[/color]

So, I take the freedom to answer this: Hold still, things will be resolved shortly.

Ente

thats what i would have done, but he answered me and said that nothing is wrong. And that is simple false. I just want an answer saying that indeed something is wrong with my account and that it will be fixed when the servers synch.

Ente
Legendary
*
Offline Offline

Activity: 2126
Merit: 1001



View Profile
December 19, 2013, 12:44:59 PM
 #1125

Hi Giancarlo,

I am sure that is just an honest mistake, thats why i will show you in detail, why i am 100% certain that there is an error on you side.

Well, that's basically what Giancarlo said: Servers are upgraded, more than one database active, there will be short-term discrepancies in the numbers. Hold still for one, two days, until it's all migrated.
There's a sheduled downtime exactly for this, you see:
Quote
Our platform will be migrated the 19th of December, at 16:00 GMT, for a downtime of 30 minutes. Thank you for your comprehension.

So, I take the freedom to answer this: Hold still, things will be resolved shortly.

Ente

thats what i would have done, but he answered me and said that nothing is wrong. And that is simple false. I just want an answer saying that indeed something is wrong with my account and that it will be fixed when the servers synch.


Ah, okay, I see your point. They will sort this out.

Ente
Wassupia
Member
**
Offline Offline

Activity: 106
Merit: 10


View Profile
December 19, 2013, 01:31:48 PM
Last edit: March 11, 2014, 04:05:46 PM by Wassupia
 #1126

Hi

I just finished my history export code. Took me a while to get it working, I never did javascript before, so used a lot from stackexchange Smiley
You can inspect the script (you should) to see it's legit Smiley
I don't have the time to make code to process/filter the data, so that's up to you.

-------------updated:--------------
what it does:
convert a chosen section of your bitfinex history to cvs and a json-encoded array.

Usage:
-go to https://www.bitfinex.com/ , if you use https://bitfinex.com/ you need to change that in the code.
-paste the code to your browsers (I advice firefox) scratchpad (for firefox : shift+F4) (for chrome : control+shift+j) and run.

then:
Fill in the form. Click 'click me' ONCE to activate. The progress bar only works for firefox.

code::
Code:
function makeTableHTML(myArray) {
    //http://stackoverflow.com/a/15164796
    var result = "<table border=1>";
    for (var i = 0; i < myArray.length; i++) {
        result += "<tr>";
        for (var j = 0; j < myArray[i].length; j++) {
            result += "<td>" + myArray[i][j] + "</td>";
        }
        result += "</tr>";
    }
    result += "</table>";

    return result;
}

function getTable(txt) {

    //convert string to dom-object-thing, from http://stackoverflow.com/a/3104234
    var tempDiv = document.createElement('div');
    tempDiv.innerHTML = txt;

    //find the table
    var dataSet = tempDiv.getElementsByClassName("history table table-bordered table-striped")[0];

    return dataSet.outerHTML;
}



//  http://stackoverflow.com/a/9579792
function tableToArray(table) {

    //convert string to dom-object-thing, from http://stackoverflow.com/a/3104234 and http://stackoverflow.com/a/18795833 for learning me how to use jq
    var tempDiv = document.createElement('div');
    tempDiv.innerHTML = table;
    table = tempDiv;

    var myTableArray = [];

    $(table).find('tr').each(function () {
        var arrayOfThisRow = [];
        var tableData = $(this).find('td');
        if (tableData.length > 0) {
            tableData.each(function () {
                arrayOfThisRow.push($(this).text().replace(/^\s+/,"").replace(/\s+$/,""));
            });
            myTableArray.push(arrayOfThisRow);
        }
    });

    return (myTableArray);
}
//from http://stackoverflow.com/a/4033310
function httpGet(theUrl) {
    var xmlHttp = null;

    xmlHttp = new XMLHttpRequest();
    xmlHttp.open("GET", theUrl, false);
    xmlHttp.send(null);
    return xmlHttp.responseText;
}


function getHistoryData(page, choice) {
    var html = httpGet('https://www.bitfinex.com/' + choice + '?page=' + page);

    var count = html.match(/cloudflare/g);
    if (count !== null) {
        alert("cloudflare page was loaded... Refreshing page and try again");
        location.reload();
    }

    var a = getTable(html).replace(/\n/g,"").replace(/ {2,}/g, ' ');

    var b = new Array();
    b = tableToArray(a);
    return b;
}


function getHistory(min, max, choice) {
    var coll = [];

    for (; min <= max; min++) {
        var a = getHistoryData(min, choice);
updateProgress();
        for (var i = 0; i < a.length; i++) {

            coll[coll.length] = a[i];
        }
    }

    return coll;

}



function addChoice() {
    var newHTML = document.createElement('div');
    newHTML.innerHTML = '----------------------------------------------------<br/><H3><b>READ-ME-FIRST</b></H3>If your history-page-count of your chosen section is high, you should consider splitting the scraping into batches of eg 25 (just a guess), because the script could get issues with the cloudflare-protection. The output will be a box with a json encoded array and the box below cvs. You should make sure no trades or interest payments happen when the parser is active, so I advice to cancel all trades and to not run this script  between 01.00 and 02:00 GMT. <b>You should refresh this page if you want to scrape your next batch/section</b>    -Wassupia<br/><br/>Note: the progress bar on Google Chrome does not work, click "Click Me" only once and wait!<br/><br/>updated on: March 11<br/> <br/> whiskey fund: 16pnBWFqyM5gCfMjTtpWYEv1hgVthehQEA<br/> <br/> <button type="button" onClick="go()">Click Me!</button><br/>History section<select id="choice" >     <option value="account/ledger/usd">USD</option>     <option value="account/ledger/btc">BTC</option>     <option value="account/ledger/ltc">LTC</option>     <option value="orders">Orders</option>     <option value="offers">Offers</option>     <option value="account/trades">Trades</option>     <option value="account/unused_swaps">Unused swaps</option> <option value="account/margin_swaps">Margin swaps</option> </select>First page (>0) <input type="text" id="FirstPage" value="1">Last page (>0)<input type="text" id="LastPage" value="LastPage">CSVseparator<select id="CSVseparator"><option value=";">; (semicolon)</option> <option value=",">, (comma)</option><option value="|">| (vertical bar)</option> </select><br/><br/>';
    document.body.appendChild(newHTML);
window.scrollTo(0,document.body.scrollHeight);

}


function printD(txt, message) {
    var newHTML = document.createElement('div');
    newHTML.innerHTML = '<br/><p>' + message + '</p><textarea rows="50" cols="50" onclick="this.focus();this.select()" readonly="readonly">' + txt + '</textarea> <br/>';
    document.body.appendChild(newHTML);
    window.scrollTo(0,document.body.scrollHeight);

}

function addProgressB(){
  var newHTML = document.createElement('div');
    newHTML.innerHTML = '<br/><p>progress:</p><input type="text" name="desc" id="uprogress" value="0" ></input>';
    document.body.appendChild(newHTML);
window.scrollTo(0,document.body.scrollHeight);

}

function updateProgress()
  {
document.getElementById("uprogress").value = 1 + parseInt(document.getElementById("uprogress").value);

  }
function go() {
    var min = document.getElementById("FirstPage").value;
    var max = document.getElementById("LastPage").value;
    var choice = document.getElementById("choice").value;
    var separator = document.getElementById("CSVseparator").value;
if (max < 1 || min < 1){alert("firstpage and lastpage can't be less than 1");return '';}
    if (max == "LastPage"){ alert('Fill in LastPage'); return ''; }
addProgressB();

    var history = getHistory(min, max, choice);
    printD(JSON.stringify(history), "jsonarray");

    var csv = "";
    for (var i = 0; i < history.length; i++) {
        csv += history[i].join(separator) + "\r\n";
    }
    printD(csv, "csv");

}
addChoice();


edit: meant shift+ F4, not altF4 lol
edit 30 dec: spelling and return error if form not filled
edit March 11 2014: updated script with latest history sections, added cvs separator choise + readme update

My BTC-address: 1JtgnB6UC5j9gMYzLftVaCmwdPL4PrWeYB
seleme
Legendary
*
Offline Offline

Activity: 2772
Merit: 1028


Duelbits.com


View Profile WWW
December 19, 2013, 05:01:53 PM
 #1127

No reserve active, both on margin buy and sell.

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000      
PROVABLY FAIR
GAMES
   $500,000  
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
TwinWinNerD
Legendary
*
Offline Offline

Activity: 1680
Merit: 1001


CEO Bitpanda.com


View Profile WWW
December 19, 2013, 05:08:02 PM
 #1128

No reserve active, both on margin buy and sell.

there is a guy buying everything for the max autoborrow rate of 1%

2    1.0%    7764730.64    1

7 Fking millions!

seleme
Legendary
*
Offline Offline

Activity: 2772
Merit: 1028


Duelbits.com


View Profile WWW
December 19, 2013, 05:16:48 PM
 #1129

where do you see that?

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000      
PROVABLY FAIR
GAMES
   $500,000  
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
TwinWinNerD
Legendary
*
Offline Offline

Activity: 1680
Merit: 1001


CEO Bitpanda.com


View Profile WWW
December 19, 2013, 05:18:34 PM
 #1130

https://bitfinex.com/credit/index/usd

erich
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
December 19, 2013, 05:21:17 PM
 #1131

So shouldn't margin trading work if I uncheck "Maximum margin rate?", or insert sth like 2% ?
gog1
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile
December 19, 2013, 05:24:03 PM
 #1132

Lending offers and credit request somehow are not matching.......
m19
Full Member
***
Offline Offline

Activity: 186
Merit: 100


View Profile
December 19, 2013, 06:02:21 PM
 #1133

Is margin trading working as expected? Since there is nothing available for long and short.
erich
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
December 19, 2013, 06:30:39 PM
 #1134

so I have reserved some margin, but still can't open a position:

https://i.imgur.com/sRf4qov.png
nmersulypnem
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
December 19, 2013, 06:34:54 PM
 #1135

Who is taking all the reserve!!?!?!?
nmersulypnem
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
December 19, 2013, 06:51:18 PM
 #1136

No reserve active, both on margin buy and sell.

there is a guy buying everything for the max autoborrow rate of 1%

2    1.0%    7764730.64    1

7 Fking millions!


Where can you see that on the website?
seleme
Legendary
*
Offline Offline

Activity: 2772
Merit: 1028


Duelbits.com


View Profile WWW
December 19, 2013, 07:02:39 PM
 #1137

Margin trading is broken. I have reserved some coins too and it still gives me "no reserve" error.

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000      
PROVABLY FAIR
GAMES
   $500,000  
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
tobobit
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile
December 19, 2013, 07:03:06 PM
 #1138

so I have reserved some margin, but still can't open a position:


yep. i dont get it either. shenannigans
seleme
Legendary
*
Offline Offline

Activity: 2772
Merit: 1028


Duelbits.com


View Profile WWW
December 19, 2013, 07:06:35 PM
 #1139

Do they have any live support?

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000      
PROVABLY FAIR
GAMES
   $500,000  
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
tobobit
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile
December 19, 2013, 07:21:01 PM
 #1140

Do they have any live support?
i emailed support@bitfinex hours ago. NOTHING. not even an ack
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 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!