-
-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationepic:docs-migrationEpic: Documentation & MigrationEpic: Documentation & Migrationv2.0Target: v2.0 releaseTarget: v2.0 release
Description
User Story
As a potential user, I want the README to showcase the new builder API so that I can see how to use the library.
Acceptance Criteria
- README.md updated with v2.0 examples
- Quick start section with builder pattern
- Performance badges/claims with benchmark links
- Comparison with other libraries
- Links to full documentation
README Sections
-
Installation
dotnet add package OoplesFinance.StockIndicators -
Quick Start
var builder = new StockIndicatorBuilder(source) .ConfigureIndicators(i => { var sma = i.Sma(20); var rsi = i.Rsi(14); }) .ConfigureSignals(s => { s.When(rsi).CrossesAbove(70).Emit("overbought"); });
-
Performance
- Zero heap allocations
- SIMD-accelerated calculations
- Benchmark results
-
Features
- 750+ indicators
- Streaming support
- Notification adapters
- Auto-trading integration
Dependencies
- All implementation epics complete
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationepic:docs-migrationEpic: Documentation & MigrationEpic: Documentation & Migrationv2.0Target: v2.0 releaseTarget: v2.0 release