Bittrex charts fullscreen? Here ya go

in #bittrex7 years ago (edited)

One day I'll make a script that will force Bittrex to hire me. Until then let's just chill with these little tricks.
GRAPH MAGNIFY.png

Because Bittrex probably has best charts amoung exchanges, I decided to make a script that will pull those graph even closer to their users by seeing them fullscreen.

Usage

When using the script you will see a link showing up on the page where you trade some coin just above the name of the coin. Click the link and you will see maximized version of the chart.
GRAPH MAGNIFY2.png

I know this graph is not Coinigy or TradingView, but it will do for a quick check. Looks pretty impressive zoomed-in though.
GRAPH MAGNIFY3.png

The Code

All you have to do is use Tampermonkey with combination with script bellow. It is pretty easy to use. If you don't know how to use it, just read my previous posts regarding Tampermonkey. The script is clean and viruses free. Yeah... and will not mine Monero in the background like some other scripts do.

// ==UserScript==
// @name        Bittrex Fullscreen Chart
// @author      Alesh
// @include     https://bittrex.com/Market/Index?MarketName=*
// @version     1
// ==/UserScript==

(function() {

    var chart = document.getElementById('rowChart');
    var element2 = document.createElement('a');
    var url1 = window.location.href;
    var link1 = url1.replace("https://bittrex.com/Market/Index?MarketName=", "https://bittrex.com//market/MarketStandardChart?marketName=");
    element2.href = link1;
    element2.style='padding:10px';
    element2.target = "_blank";
    element2.innerHTML = "Fullscreen chart";

    chart.prepend(element2);
})();
Sort:  

Congratulations @alesh! You received a personal award!

Happy Birthday! - You are on the Steem blockchain for 2 years!

You can view your badges on your Steem Board and compare to others on the Steem Ranking

Vote for @Steemitboard as a witness to get one more award and increased upvotes!

Coin Marketplace

STEEM 0.17
TRX 0.15
JST 0.028
BTC 62007.73
ETH 2389.39
USDT 1.00
SBD 2.49