Quannected

Place orders on Robinhood via TradingView alerts

Quannected là gì?

Quannected là một tiện ích mở rộng Chrome được phát triển bởi theweeklypassiveincome, và tính năng chính của nó là "Place orders on Robinhood via TradingView alerts".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quannected

Tải xuống các tệp mở rộng Quannected 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

                        This extension allows you to connect your Robinhood Brokerage account to TradingView so you can make trades right from your TradingView charts. Also, it allows you to create alerts based off of your strategy and will automatically place trades on Robinhood for you when your criteria is met. If you have a trading strategy that you want to automate, this extension does the trading for you!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Quannected Quannected
ID majjmbbkgbemgahmpgihhklgbckdhdce
URL Chính Thức https://chromewebstore.google.com/detail/quannected/majjmbbkgbemgahmpgihhklgbckdhdce
Mô tả Place orders on Robinhood via TradingView alerts
Kích Thước Tệp 99.18 KB
Số Lần Cài Đặt 670
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-10-30
Ngày Phát Hành 2020-10-30
Nhà Phát Triển theweeklypassiveincome
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.weeklypassiveincome.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quannected",
    "description": "Place orders on Robinhood via TradingView alerts",
    "version": "1.0",
    "browser_action": {
        "default_title": "Quannected",
        "default_icon": ".\/images\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": ".\/images\/icon.png",
        "48": ".\/images\/icon.png",
        "16": ".\/images\/icon.png"
    },
    "background": {
        "scripts": [
            ".\/js\/jquery.min.js",
            ".\/js\/config.js",
            ".\/js\/core.js",
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tradingview.com\/*",
                "https:\/\/tradingview.com\/*"
            ],
            "js": [
                ".\/js\/jquery.min.js",
                ".\/js\/simpleNotify.js",
                ".\/js\/config.js",
                ".\/js\/core.js",
                ".\/js\/content_scriptAlert.js",
                ".\/js\/content_scriptBuy.js"
            ],
            "css": [
                ".\/css\/content_css.css",
                ".\/css\/simpleNotifyStyle.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/localhost:44333\/*",
        "http:\/\/robinhoodextension.gear.host\/*"
    ]
}