Neo Trader
Send orders from Tradingview to Metatrader platform with one click.
Neo Trader क्या है?
Neo Trader Dilip Roshitha द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send orders from Tradingview to Metatrader platform with one click."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Neo Trader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |