MultiBridge Trader
MultiBridge: the tradingview connector
MultiBridge Traderคืออะไร?
MultiBridge Trader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Multibridge Trading และคุณลักษณะหลักของมันคือ "MultiBridge: the tradingview connector"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MultiBridge Trader
ดาวน์โหลดไฟล์ส่วนขยาย MultiBridge Trader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
MultiBridge Trader (Beta release) Do you want to connect Tradingview(TM) to your broker ? Now it is possible. First broker connected is Interactive Brokers. This extension will listen to Tradingview(TM) alerts sent by studies and send the orders to your broker. The Command is encoded in the description of the alert so for example to buy 100 shares of Amazon stock we write: B,AMZN,100 When the alert will be triggered the extension will call the Java(TM) application that will place the order to your broker client. Please install the extension and the MultiBridge trading application on the same PC and follow the setup instructions. Ask the developer for downloading the Java module that connects to IB TWS and test the bridge to Interactive Brokers. DISCLAIMER: Use of any software obtained from this website or any of its distributors or resellers and of any information posted on this website, is the sole responsibility of the buyer. The author of the software, its distributors and resellers are not financial advisors, and does not recommend the purchase of any security or advise on the suitability of any trade or investment. It should not be assumed that use of the software available for free or for sale or of any information posted on this website will result in trading profits and it could cause losses. No claim is made that use of its software can result in trading profits and author of the software, its distributors, resellers cannot be held responsible for any trading losses occurred as a result of the use, or inability to use, this software or any other information posted on this website. Any type of trading activity associated to the use of this software, such as futures, options, currency or stock trading, involves substantial financial risks. Short-term and day trading are only suitable to those having a full understanding of the risks involved and can afford to lose.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MultiBridge Trader |
ID | cionlpghinnlhkmdlghlipcebkldacoe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/multibridge-trader/cionlpghinnlhkmdlghlipcebkldacoe |
คำอธิบาย | MultiBridge: the tradingview connector |
ขนาดไฟล์ | 40.49 KB |
จำนวนการติดตั้ง | 217 |
เวอร์ชันปัจจุบัน | 0.8 |
อัปเดตครั้งล่าสุด | 2017-07-22 |
วันที่เผยแพร่ | 2017-07-22 |
คะแนน | 3.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Multibridge Trading |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MultiBridge Trader", "short_name": "MultiBridge", "version": "0.8", "description": "MultiBridge: the tradingview connector", "permissions": [ "https:\/\/www.tradingview.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.tradingview.com\/*" ], "js": [ "lib\/jquery-3.2.1.min.js", "DomActions.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "manifest_version": 2 } |