Neo Trader

Send orders from Tradingview to Metatrader platform with one click.

ما هو Neo Trader؟

Neo Trader هو إضافة Chrome تم تطويرها بواسطة Dilip Roshitha، والميزة الرئيسية لها هي "Send orders from Tradingview to Metatrader platform with one click.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Neo Trader

قم بتنزيل ملفات الامتداد Neo Trader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Neo Trader Neo Trader
ID cjdgehgngjapndihjoddmpiafiagbcpb
عنوان URL الرسمي https://chromewebstore.google.com/detail/neo-trader/cjdgehgngjapndihjoddmpiafiagbcpb
الوصف Send orders from Tradingview to Metatrader platform with one click.
حجم الملف 959 KB
عدد التثبيتات 74
النسخة الحالية 1.0
آخر تحديث 2023-10-15
تاريخ النشر 2023-10-15
المطور Dilip Roshitha
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/diliproshitha/neo-trader
عنوان صفحة المساعدة https://github.com/diliproshitha/neo-trader
اللغات المدعومة 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"
    }
}