Bybit Level II Order Detector

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

O que é Bybit Level II Order Detector?

Bybit Level II Order Detector é uma extensão do Chrome desenvolvida por Peyman, e sua principal característica é "This tool makes reading the tape much easier by changing the color of large orders".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Bybit Level II Order Detector

Baixe arquivos de extensão Bybit Level II Order Detector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bybit Level II Order Detector Bybit Level II Order Detector
ID pcikkbooljiofapjlodjhnldefhjaejf
URL Oficial https://chromewebstore.google.com/detail/bybit-level-ii-order-dete/pcikkbooljiofapjlodjhnldefhjaejf
Descrição This tool makes reading the tape much easier by changing the color of large orders
Tamanho do Arquivo 180 KB
Contagem de Instalações 31
Versão Atual 1.001
Última Atualização 2022-01-18
Data de Publicação 2022-01-17
Desenvolvedor Peyman
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}