Bybit Level II Order Detector

This tool makes reading the tape much easier by changing the color of large orders

Vad är Bybit Level II Order Detector?

Bybit Level II Order Detector är en Chrome-tillägg utvecklad av Peyman, och dess huvudfunktion är "This tool makes reading the tape much easier by changing the color of large orders".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Bybit Level II Order Detector-förlängningens CRX-fil

Ladda ner Bybit Level II Order Detector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Reading the tape can be quite challenging especially with crypto exchanges as there is more automated trading involved but this extension makes it easier by calculating a sum of the last 70 orders and then divide it by 35 then whatever order that is larger than the so-said calculations will be highlighted in the recent trades window and it works, no matter how fast the tape is printing. 
This function has been around in stock trading platforms such as ThinkorSwim and TD Ameritrade, but no crypto exchange has this functionality. So this tool will surely enhance your technical analysis.                    

Grundläggande Information om Tillägg

Namn Bybit Level II Order Detector Bybit Level II Order Detector
ID pcikkbooljiofapjlodjhnldefhjaejf
Officiell webbadress https://chromewebstore.google.com/detail/bybit-level-ii-order-dete/pcikkbooljiofapjlodjhnldefhjaejf
Beskrivning This tool makes reading the tape much easier by changing the color of large orders
Filstorlek 180 KB
Antal Installationer 31
Aktuell Version 1.001
Senast Uppdaterad 2022-01-18
Publiceringsdatum 2022-01-17
Utvecklare Peyman
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bybit Level II Order Detector",
    "description": "This tool makes reading the tape much easier by changing the color of large orders",
    "version": "1.001",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bybit.com\/trade\/*"
            ],
            "css": [
                "Style.css"
            ],
            "run_at": "document_idle",
            "js": [
                "background.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    }
}