Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - AtomicBounce

Pages: 1 [2]
16
I got the same error when using the version you can download at http://bitshares-x.info/. The 32 bit version that worked for me can be downloaded here: https://github.com/dacsunlimited/bitsharesx/releases/download/0.4.12/BitSharesX-0.4.12.exe

Perhaps somebody can fix the binary that is linked on http://bitshares-x.info?

17
BTW you can make this change permanent using a browser plugin like for example Greasemonkey.

18
Hello,

With nearly 90% of the market volume, the BTSX/CNY trading pair on BTC38 is quite important to keep track of.

A site similar to BitcoinWisdom for the BTSX/CNY trading pair on BTC38 can be found here:
http://www.sosobtc.com/kline/btsx/btc38.html

If you are usually trading in BTC markets and not in CNY markets, it is kinda annoying to have to manually convert CNY prices to BTC prices to get a grasp of the current valuation of BTSX in China. I wrote a small script that automates this process. You can simply copy it into the URL bar while you are on sosobtc.com and press enter to execute it. After executing this script, a second price is shown on the site giving the always up-to-date BTSX value in BTC (using the current Huobi BTC/CNY ticker value for the conversion).

Code: [Select]
$('head').append('<style>.dark #sidebar #priceinbtc.green {color: #0F0;} .dark #sidebar #priceinbtc.red {color: #F00;};</style>');$('#price').after('<div id="priceinbtc" style="text-align:center;font-size: 18px;font-weight: bold;height: 40px;line-height: 40px;"></div>');function updateBTCPrice(){console.log('updateBTCPrice');var ticker=$('#ticker_huobi_btc').text();var huobi_btc_cny_ticker_val=ticker.substring(ticker.indexOf('¥')+1);var val = $('#trades .row:nth-of-type(1) .p').text()/huobi_btc_cny_ticker_val;$('#priceinbtc').text(Math.round(val * 10000000) / 10000000);$('#priceinbtc').attr('class',$('#trades .row:nth-of-type(1) .p').attr('class'));};updateBTCPrice();$('#trades').bind('DOMNodeInserted', updateBTCPrice);$('ul.nav-item-list.clearfix').bind('DOMSubtreeModified', updateBTCPrice);

EDIT: pasting the command to the URL bar seems not to work in firefox. Instead, you can open the javascript console by pressing F12 and execute the command there (without the leading 'javascript:').

Just wanted to share in case it is useful to someone else!

Cheers

19
BTSX5ZdzeW6aZviB4FBnVcwKFW5QAd3UEn6b6KP6nnc8XB9fsHNPx3

Thanks :)

Pages: 1 [2]