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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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" } } |