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"입니다.
확장 프로그램 스크린샷
Bybit Level II Order Detector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } } |