Bittrex charts fullscreen? Here ya go

alesh(40)
Published in
#bittrex
Words
219
Reading
1 min
Listen
Play
9y

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);
})();