Quannected

Place orders on Robinhood via TradingView alerts

O que é Quannected?

Quannected é uma extensão do Chrome desenvolvida por theweeklypassiveincome, e sua principal característica é "Place orders on Robinhood via TradingView alerts".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Quannected

Baixe arquivos de extensão Quannected no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Quannected Quannected
ID majjmbbkgbemgahmpgihhklgbckdhdce
URL Oficial https://chromewebstore.google.com/detail/quannected/majjmbbkgbemgahmpgihhklgbckdhdce
Descrição Place orders on Robinhood via TradingView alerts
Tamanho do Arquivo 99.18 KB
Contagem de Instalações 670
Versão Atual 1.0
Última Atualização 2020-10-30
Data de Publicação 2020-10-30
Desenvolvedor theweeklypassiveincome
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.weeklypassiveincome.com/privacy-policy
Idiomas Suportados 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\/*"
    ]
}