TakeProfit
An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)
TakeProfit là gì?
TakeProfit là một tiện ích mở rộng Chrome được phát triển bởi edeoleo, và tính năng chính của nó là "An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng TakeProfit
Tải xuống các tệp mở rộng TakeProfit 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
Now you can Calculate what % of your account you can invest in each trade (10% and 20%) Show when you take profit 30%/70%/100% on Robinhood.com and calculate profit % based on price contract move (Options chain https://robinhood.com/options/chains/{ID}) got to any options/chains to see the possible profit go to your options page to see you exit plan when you have contracts in that ticker https://robinhood.com/options/ Video explanation and settings coming soon
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | TakeProfit |
ID | fnaifallefkhnfppjalkjkeddlbfafpo |
URL Chính Thức | https://chromewebstore.google.com/detail/takeprofit/fnaifallefkhnfppjalkjkeddlbfafpo |
Mô tả | An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750) |
Kích Thước Tệp | 369 KB |
Số Lần Cài Đặt | 103 |
Phiên Bản Hiện Tại | 0.7 |
Cập Nhật Lần Cuối | 2022-03-15 |
Ngày Phát Hành | 2021-01-11 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | edeoleo |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TakeProfit", "version": "0.7", "description": "An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay\n#8750)", "manifest_version": 2, "permissions": [ "https:\/\/robinhood.com\/*" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/Icon-16.png", "32": "images\/Icon-32.png", "48": "images\/Icon-48.png", "128": "images\/Icon-128.png" } }, "icons": { "16": "images\/Icon-16.png", "32": "images\/Icon-32.png", "48": "images\/Icon-48.png", "128": "images\/Icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/robinhood.com\/*" ], "js": [ "js\/popup.js" ] } ] } |