Share these talks and lectures with your colleagues
Invite colleaguesAmibroker - 6.93
AmiBroker 6.93 is a specific version of the popular technical analysis and charting software used by traders and analysts. It was released in February 2024.
Here is a summary of the key changes and features introduced in version 6.93: amibroker 6.93
New Functions in 6.93
-
GetWebSocketData()– Pulls real-time fields directly from a WebSocket endpoint into an array. AmiBroker 6wsPrice = GetWebSocketData("wss://stream.data.com/trade", "AAPL.last"); -
ArrayStats()– Returns a structure with mean, median, standard deviation, skewness, and kurtosis in one call. ArrayStats() – Returns a structure with mean, median,stats = ArrayStats(Close, 50); mySkew = stats.skewness; -
TimeFrameDecompressEx()– Allows flexible remapping of lower timeframe data to higher timeframes without gaps. Fixes the oldTimeFrameDecompress()issue where weekends caused misalignment.
Step 2: Database Configuration for Speed
Once installed, create a new database with these optimal settings for 6.93:
- Base time interval: 1-minute (This allows rolling up to 5-min, 15-min, or Daily on the fly).
- Number of bars: Set to 500,000 (Enough for 20+ years daily or 2 years intraday).
- File system: Use "Individual files" (not flat file) for SSD drives; use "Single file" for old HDDs.