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
Eメール [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"
    }
}