Neo Trader

Send orders from Tradingview to Metatrader platform with one click.

Cos'è Neo Trader?

Neo Trader è un'estensione di Chrome sviluppata da Dilip Roshitha, e la sua funzione principale è "Send orders from Tradingview to Metatrader platform with one click.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Neo Trader

Scarica i file di estensione Neo Trader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Neo Trader Neo Trader
ID cjdgehgngjapndihjoddmpiafiagbcpb
URL Ufficiale https://chromewebstore.google.com/detail/neo-trader/cjdgehgngjapndihjoddmpiafiagbcpb
Descrizione Send orders from Tradingview to Metatrader platform with one click.
Dimensione del File 959 KB
Conteggio Installazioni 74
Versione Corrente 1.0
Ultimo Aggiornamento 2023-10-15
Data di Pubblicazione 2023-10-15
Sviluppatore Dilip Roshitha
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/diliproshitha/neo-trader
URL della Pagina di Aiuto https://github.com/diliproshitha/neo-trader
Lingue Supportate 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"
    }
}