Neo Trader
Send orders from Tradingview to Metatrader platform with one click.
Co to jest Neo Trader?
Neo Trader to rozszerzenie Chrome opracowane przez Dilip Roshitha, a jego główną funkcją jest „Send orders from Tradingview to Metatrader platform with one click.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Neo Trader
Pobierz pliki rozszerzeń Neo Trader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Neo Trader |
ID | cjdgehgngjapndihjoddmpiafiagbcpb |
Oficjalny URL | https://chromewebstore.google.com/detail/neo-trader/cjdgehgngjapndihjoddmpiafiagbcpb |
Opis | Send orders from Tradingview to Metatrader platform with one click. |
Rozmiar pliku | 959 KB |
Liczba instalacji | 74 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-10-15 |
Data Publikacji | 2023-10-15 |
Deweloper | Dilip Roshitha |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/diliproshitha/neo-trader |
Adres URL Strony Pomocy | https://github.com/diliproshitha/neo-trader |
Obsługiwane Języki | 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" } } |