Neo Trader
Send orders from Tradingview to Metatrader platform with one click.
Neo Trader là gì?
Neo Trader là một tiện ích mở rộng Chrome được phát triển bởi Dilip Roshitha, và tính năng chính của nó là "Send orders from Tradingview to Metatrader platform with one click.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Neo Trader
Tải xuống các tệp mở rộng Neo Trader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Neo Trader |
ID | cjdgehgngjapndihjoddmpiafiagbcpb |
URL Chính Thức | https://chromewebstore.google.com/detail/neo-trader/cjdgehgngjapndihjoddmpiafiagbcpb |
Mô tả | Send orders from Tradingview to Metatrader platform with one click. |
Kích Thước Tệp | 959 KB |
Số Lần Cài Đặt | 74 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-10-15 |
Ngày Phát Hành | 2023-10-15 |
Nhà Phát Triển | Dilip Roshitha |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/diliproshitha/neo-trader |
URL Trang Trợ Giúp | https://github.com/diliproshitha/neo-trader |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |