Bybit Level II Order Detector

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

什麼是Bybit Level II Order Detector?

Bybit Level II Order Detector是由Peyman開發的Chrome擴展程式,該擴展的主要功能是“This tool makes reading the tape much easier by changing the color of large orders”。

擴展截圖

screenshot
screenshot

下載Bybit Level II Order Detector擴展crx文件

下載Bybit Level II Order Detector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Bybit Level II Order Detector Bybit Level II Order Detector
ID pcikkbooljiofapjlodjhnldefhjaejf
官方網址 https://chromewebstore.google.com/detail/bybit-level-ii-order-dete/pcikkbooljiofapjlodjhnldefhjaejf
簡介 This tool makes reading the tape much easier by changing the color of large orders
檔案大小 180 KB
安裝次數 31
目前版本 1.001
更新時間 2022-01-18
上架時間 2022-01-17
開發者 Peyman
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        ]
    }
}