Neo Trader

Send orders from Tradingview to Metatrader platform with one click.

Vad är Neo Trader?

Neo Trader är en Chrome-tillägg utvecklad av Dilip Roshitha, och dess huvudfunktion är "Send orders from Tradingview to Metatrader platform with one click.".

Tilläggsskärmbilder

screenshot

Ladda ner Neo Trader-förlängningens CRX-fil

Ladda ner Neo Trader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Neo Trader Neo Trader
ID cjdgehgngjapndihjoddmpiafiagbcpb
Officiell webbadress https://chromewebstore.google.com/detail/neo-trader/cjdgehgngjapndihjoddmpiafiagbcpb
Beskrivning Send orders from Tradingview to Metatrader platform with one click.
Filstorlek 959 KB
Antal Installationer 74
Aktuell Version 1.0
Senast Uppdaterad 2023-10-15
Publiceringsdatum 2023-10-15
Utvecklare Dilip Roshitha
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/diliproshitha/neo-trader
Hjälpsida URL https://github.com/diliproshitha/neo-trader
Stödda Språk 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"
    }
}