Quannected

Place orders on Robinhood via TradingView alerts

Qu'est-ce que Quannected ?

Quannected est une extension Chrome développée par theweeklypassiveincome, et sa fonction principale est "Place orders on Robinhood via TradingView alerts".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Quannected

Téléchargez les fichiers d'extension Quannected au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Quannected Quannected
ID majjmbbkgbemgahmpgihhklgbckdhdce
URL Officiel https://chromewebstore.google.com/detail/quannected/majjmbbkgbemgahmpgihhklgbckdhdce
Description Place orders on Robinhood via TradingView alerts
Taille du Fichier 99.18 KB
Nombre d'Installations 670
Version Actuelle 1.0
Dernière Mise à Jour 2020-10-30
Date de Publication 2020-10-30
Développeur theweeklypassiveincome
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.weeklypassiveincome.com/privacy-policy
Langues Prises en Charge 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\/*"
    ]
}