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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    }
}