SeekAlgo Docs
Public guide to setting up scripts, configuring platform backtests, creating strategies, and using the reference surface.
Beginner
SeekAlgo Docs
This docs set is organized for public users who want to configure the platform, create indicators and strategies, and then move into the reference pages.
Guided Path
- Introduction
- Getting Started
- Platform Settings
- Indicator Authoring
- Strategy Authoring
- Multi-Symbol Strategies
- Sample Script Catalog
Reference
- Scripting Reference
- Built-In Methods Reference
- Strategy API
- TA Library Reference
- Examples
- Migration Guide
Advanced Topics
Current Syntax Rules
- Scripts start with
script({...}). - Inputs use
input.integer(...),input.float(...),input.bool(...), and relatedinput.*helpers. - Strategy orders should use object-style
strategy.entry({ ... })andstrategy.exit({ ... }). - Basket strategies use
symbols([...])plussymbol.*[index]. $script,$symbols,$input, and$symbolare legacy compatibility surfaces only.