Greasy Fork is available in English.

[InstaBinary] Блок с катировкой

Добавлят блок фиксированый блок с котировкой

// ==UserScript==
// @name         [InstaBinary] Блок с катировкой
// @namespace    tuxuuman:instaforex.com
// @version      0.1
// @description  Добавлят блок фиксированый блок с котировкой
// @author       tuxuuman<vk.com/tuxuuman, tuxuuman@gmail.com>
// @match        https://binary.instaforex.com*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var cVal = $("<input type='text' enabled='false'/>", {
        style: {
            "position": "absolute",
            "top": 0,
            "left": 0
        }
    });

    $('body').prepend(cVal);

    Object.defineProperty($("#coor_y1")[0], "value", {
        set: function(value) {
            cVal.val(value);
        },
        get: function() {
            return cVal.val();
        }
    });

})();