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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Peyman และคุณลักษณะหลักของมันคือ "This tool makes reading the tape much easier by changing the color of large orders"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bybit Level II Order Detector
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
ID | pcikkbooljiofapjlodjhnldefhjaejf |
URL อย่างเป็นทางการ | 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" ] } } |