Quannected
Place orders on Robinhood via TradingView alerts
Was ist Quannected?
Quannected ist eine Chrome-Erweiterung, die von theweeklypassiveincome entwickelt wurde, und ihr Hauptmerkmal ist "Place orders on Robinhood via TradingView alerts".
Erweiterungsscreenshots
Quannected-Erweiterungs-CRX-Datei herunterladen
Laden Sie Quannected-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Quannected |
ID | majjmbbkgbemgahmpgihhklgbckdhdce |
Offizielle URL | https://chromewebstore.google.com/detail/quannected/majjmbbkgbemgahmpgihhklgbckdhdce |
Beschreibung | Place orders on Robinhood via TradingView alerts |
Dateigröße | 99.18 KB |
Installationsanzahl | 670 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-10-30 |
Veröffentlichungsdatum | 2020-10-30 |
Entwickler | theweeklypassiveincome |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.weeklypassiveincome.com/privacy-policy |
Unterstützte Sprachen | 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\/*" ] } |