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
官方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
帮助页面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"
    }
}