MapServer banner Home | Products | Issue Tracker | Service Providers | FAQ | Mastodon | Download | Donate to MapServer
en ar de el es fr id it ja nl_NL pl ru sq tr

Amibroker Data Feeder Patched -

private dynamic ab;

public void UpdateRealTime(string ticker, DateTime dt, double open, double high, double low, double close, long volume)

static dynamic ab;

dynamic stock = ab.Document.Stocks(ticker); // Clear existing quotes for this ticker if needed stock.Quotes.Clear(); // Import ASCII file matching AmiBroker format ab.Document.Import("ASCII", filePath);

static void Main()

dynamic stock = ab.Document.Stocks(ticker); // Use AddQuote for real‑time tick (intraday) dynamic quote = stock.Quotes.Add(dt); quote.Open = open; quote.High = high; quote.Low = low; quote.Close = close; quote.Volume = volume;

public void Connect()

public void AddHistoricalQuote(string ticker, DateTime date, double open, double high, double low, double close, long volume)