Bybit Level II Order Detector

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

Qu'est-ce que Bybit Level II Order Detector ?

Bybit Level II Order Detector est une extension Chrome développée par Peyman, et sa fonction principale est "This tool makes reading the tape much easier by changing the color of large orders".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Bybit Level II Order Detector

Téléchargez les fichiers d'extension Bybit Level II Order Detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Bybit Level II Order Detector Bybit Level II Order Detector
ID pcikkbooljiofapjlodjhnldefhjaejf
URL Officiel https://chromewebstore.google.com/detail/bybit-level-ii-order-dete/pcikkbooljiofapjlodjhnldefhjaejf
Description This tool makes reading the tape much easier by changing the color of large orders
Taille du Fichier 180 KB
Nombre d'Installations 31
Version Actuelle 1.001
Dernière Mise à Jour 2022-01-18
Date de Publication 2022-01-17
Développeur Peyman
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}