Neo Trader

Send orders from Tradingview to Metatrader platform with one click.

什麼是Neo Trader?

Neo Trader是由Dilip Roshitha開發的Chrome擴展程式,該擴展的主要功能是“Send orders from Tradingview to Metatrader platform with one click.”。

擴展截圖

screenshot

下載Neo Trader擴展crx文件

下載Neo Trader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
說明頁面URL 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"
    }
}