Quannected

Place orders on Robinhood via TradingView alerts

Quannected란 무엇입니까?

Quannected은(는) theweeklypassiveincome에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Place orders on Robinhood via TradingView alerts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Quannected 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Quannected Quannected
ID majjmbbkgbemgahmpgihhklgbckdhdce
공식 URL https://chromewebstore.google.com/detail/quannected/majjmbbkgbemgahmpgihhklgbckdhdce
설명 Place orders on Robinhood via TradingView alerts
파일 크기 99.18 KB
설치 횟수 670
현재 버전 1.0
최근 업데이트 2020-10-30
출시 날짜 2020-10-30
개발자 theweeklypassiveincome
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.weeklypassiveincome.com/privacy-policy
지원되는 언어 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\/*"
    ]
}