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 là gì?

Bybit Level II Order Detector là một tiện ích mở rộng Chrome được phát triển bởi Peyman, và tính năng chính của nó là "This tool makes reading the tape much easier by changing the color of large orders".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bybit Level II Order Detector

Tải xuống các tệp mở rộng Bybit Level II Order Detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bybit Level II Order Detector Bybit Level II Order Detector
ID pcikkbooljiofapjlodjhnldefhjaejf
URL Chính Thức https://chromewebstore.google.com/detail/bybit-level-ii-order-dete/pcikkbooljiofapjlodjhnldefhjaejf
Mô tả This tool makes reading the tape much easier by changing the color of large orders
Kích Thước Tệp 180 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.001
Cập Nhật Lần Cuối 2022-01-18
Ngày Phát Hành 2022-01-17
Nhà Phát Triển Peyman
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}