v0.8.6: update indicator docs, ndepend tooling, ALMA refactor, gitignore cleanup

This commit is contained in:
Miha Kralj
2026-03-13 13:46:52 -07:00
parent e3e9555fc1
commit c75135ab14
402 changed files with 2222 additions and 1779 deletions
+1 -4
View File
@@ -10,9 +10,6 @@
| **Warmup** | 1 bar |
- `CsvFeed` is a file-based feed implementation that loads historical OHLCV data from CSV files.
- Parameterized by `filepath`.
- Output range: Varies (see docs).
- Requires 1 bar of warmup before first valid output (IsHot = true).
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
`CsvFeed` is a file-based feed implementation that loads historical OHLCV data from CSV files. It supports both streaming access (simulating real-time playback) and batch retrieval.
@@ -84,4 +81,4 @@ while (true)
```csharp
long startTime = new DateTime(2024, 1, 1).Ticks;
var batch = feed.Fetch(10, startTime, TimeSpan.FromDays(1));
var batch = feed.Fetch(10, startTime, TimeSpan.FromDays(1));