Ash Candle Chart Core
Core logic, data structures, and compute engine for Ash Candle Chart.
Features
- Columnar Storage: Optimized
SeriesusingFloat64ListandInt64Listfor high performance. - Multithreading:
IsolatePoolfor offloading heavy computations. - Indicator Engine: Flexible DAG-based indicator pipeline with topological sorting.
- Incremental Updates: Support for
computeAppendto handle real-time data efficiently.
Getting Started
import 'package:ash_candle_chart_core/ash_candle_chart_core.dart';
final candles = [
Candle(timestamp: 1600000000000, open: 100, high: 110, low: 90, close: 105, volume: 1000),
];
final series = Series.fromCandles(candles);
Documentation
See the API Reference for detailed documentation.
Libraries
- ash_candle_chart_core
- Core logic for Ash Candle Chart, including data structures and compute engine.