Neo Trader
Send orders from Tradingview to Metatrader platform with one click.
Wat is Neo Trader?
Neo Trader is een Chrome-extensie ontwikkeld door Dilip Roshitha, en de belangrijkste functie is "Send orders from Tradingview to Metatrader platform with one click.".
Extensie Screenshots
Download het CRX-bestand van de extensie Neo Trader
Download Neo Trader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Neo Trader |
ID | cjdgehgngjapndihjoddmpiafiagbcpb |
Officiële URL | https://chromewebstore.google.com/detail/neo-trader/cjdgehgngjapndihjoddmpiafiagbcpb |
Beschrijving | Send orders from Tradingview to Metatrader platform with one click. |
Bestandsgrootte | 959 KB |
Aantal Installaties | 74 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2023-10-15 |
Publicatiedatum | 2023-10-15 |
Ontwikkelaar | Dilip Roshitha |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/diliproshitha/neo-trader |
Help Pagina-URL | https://github.com/diliproshitha/neo-trader |
Ondersteunde Talen | 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" } } |