TakeProfit

An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)

TakeProfitคืออะไร?

TakeProfit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย edeoleo และคุณลักษณะหลักของมันคือ "An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TakeProfit

ดาวน์โหลดไฟล์ส่วนขยาย TakeProfit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TakeProfit TakeProfit
ID fnaifallefkhnfppjalkjkeddlbfafpo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/takeprofit/fnaifallefkhnfppjalkjkeddlbfafpo
คำอธิบาย An extension to show when take profit by eee19#9066 (Special thanks to my brother NinJay #8750)
ขนาดไฟล์ 369 KB
จำนวนการติดตั้ง 103
เวอร์ชันปัจจุบัน 0.7
อัปเดตครั้งล่าสุด 2022-03-15
วันที่เผยแพร่ 2021-01-11
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา edeoleo
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
            ]
        }
    ]
}