Brokey For Amibroker · Original

In this guide, I will show you exactly how to bridge Broker.Y’s real-time data feed into Amibroker using and third-party DLLs. By the end, you will have institutional-grade charts for less than the cost of a coffee. Why Amibroker + Broker.Y is a Game Changer | Feature | Broker.Y Native | Amibroker | | :--- | :--- | :--- | | Backtesting | Basic | Advanced (Portfolio-level) | | Custom AFL Scripts | No | Unlimited | | Scanning 1000+ Scrips | Slow | Blazing fast (< 1 sec) | | Alerts & Triggers | Limited | Fully customizable | | Cost | Free | One-time $299 (lifetime) |

Nifty = Foreign("NIFTY", "C"); BankNifty = Foreign("BANKNIFTY", "C"); Spread = (BankNifty - Nifty) / Nifty * 100; Plot(Spread, "Spread %", colorYellow, styleLine); PP = (H + L + C) / 3; R1 = 2*PP - L; S1 = 2*PP - H; Plot(PP, "Pivot", colorWhite, 1); Plot(R1, "R1", colorGreen, 1); Plot(S1, "S1", colorRed, 1); 3. Broker.Y Volume Spike Scanner Scan for sudden volume spikes across all watchlist scrips. brokey for amibroker

If you are an Indian trader using (formerly BrokeY) for its low brokerage fees and direct market access, you have likely hit one major roadblock: Charting. In this guide, I will show you exactly how to bridge Broker

from pybrokey import BrokeyClient import win32com.client client = BrokeyClient(api_key="YOUR_KEY") client.login() Connect to Amibroker DDE ab = win32com.client.Dispatch("Broker.Application") Stream ticks def on_tick(tick): ab.ActiveDocument.InsertQuote(tick.symbol, tick.price, tick.volume) Broker

Nach oben