Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 1002 Bytes

File metadata and controls

45 lines (29 loc) · 1002 Bytes

@rvitaliy/quantix

Streaming-first technical indicators in modern TypeScript.

The repository currently contains:

  • public indicators: SMA, SMMA, RSI, StandardDeviation, BollingerBands
  • focused source code in src/
  • runnable usage examples in examples/
  • unit and golden tests for the published package

Repository: https://github.com/rvitaliy/quantix

Install

deno add jsr:@rvitaliy/quantix

For npm consumers through JSR:

npx jsr add @rvitaliy/quantix

Examples

Usage examples for every public indicator are available in examples/README.md.

Contributing

Development uses modern TypeScript tooling.

The standard local verification workflow is:

cd quantix
deno task check

Repository Contents

  • src/: indicator implementations and small internal primitives
  • tests/: unit and golden tests
  • examples/: runnable examples for the public API