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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
    }
}