Neo Trader
Send orders from Tradingview to Metatrader platform with one click.
Qu'est-ce que Neo Trader ?
Neo Trader est une extension Chrome développée par Dilip Roshitha, et sa fonction principale est "Send orders from Tradingview to Metatrader platform with one click.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Neo Trader
Téléchargez les fichiers d'extension Neo Trader 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 integrates Tradingview platform with Metatrader platform. Currently there is no straightforward way to send the orders from Tradingview to Metatrader. Using this Extension, trades can be sent to Metatrader with one click! Metatrader terminal should be run in the same computer where the Tradingview chart is opened. Extension sends a POST request to MT terminal with details of the position. MT platform should be configured with Expert Advisor to accept and place trades.
Informations de Base sur l'Extension
Nom | Neo Trader |
ID | cjdgehgngjapndihjoddmpiafiagbcpb |
URL Officiel | https://chromewebstore.google.com/detail/neo-trader/cjdgehgngjapndihjoddmpiafiagbcpb |
Description | Send orders from Tradingview to Metatrader platform with one click. |
Taille du Fichier | 959 KB |
Nombre d'Installations | 74 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-10-15 |
Date de Publication | 2023-10-15 |
Développeur | Dilip Roshitha |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/diliproshitha/neo-trader |
URL de la Page d'Aide | https://github.com/diliproshitha/neo-trader |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Neo Trader", "version": "1.0", "description": "Send orders from Tradingview to Metatrader platform with one click.", "icons": { "16": "assets\/logo-48.png", "32": "assets\/logo-48.png", "48": "assets\/logo-48.png", "96": "assets\/logo-96.png", "128": "assets\/logo-410.png" }, "permissions": [ "activeTab", "scripting" ], "content_scripts": [ { "js": [ "content_scripts\/fetchTradeInfo.js" ], "matches": [ "https:\/\/www.tradingview.com\/chart\/*" ] } ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "action": { "default_popup": "index.html" } } |