Bybit Level II Order Detector
This tool makes reading the tape much easier by changing the color of large orders
Was ist Bybit Level II Order Detector?
Bybit Level II Order Detector ist eine Chrome-Erweiterung, die von Peyman entwickelt wurde, und ihr Hauptmerkmal ist "This tool makes reading the tape much easier by changing the color of large orders".
Erweiterungsscreenshots
Bybit Level II Order Detector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bybit Level II Order Detector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Bybit Level II Order Detector |
ID | pcikkbooljiofapjlodjhnldefhjaejf |
Offizielle URL | https://chromewebstore.google.com/detail/bybit-level-ii-order-dete/pcikkbooljiofapjlodjhnldefhjaejf |
Beschreibung | This tool makes reading the tape much easier by changing the color of large orders |
Dateigröße | 180 KB |
Installationsanzahl | 31 |
Aktuelle Version | 1.001 |
Letztes Update | 2022-01-18 |
Veröffentlichungsdatum | 2022-01-17 |
Entwickler | Peyman |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |