SeekAlgo/Docs/SeekAlgo Docs
Docs/SeekAlgo Docs

SeekAlgo Docs

Public guide to setting up scripts, configuring platform backtests, creating strategies, and using the reference surface.

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

  1. Introduction
  2. Getting Started
  3. Platform Settings
  4. Indicator Authoring
  5. Strategy Authoring
  6. Multi-Symbol Strategies
  7. Sample Script Catalog

Reference

Advanced Topics

Current Syntax Rules

  • Scripts start with script({...}).
  • Inputs use input.integer(...), input.float(...), input.bool(...), and related input.* helpers.
  • Strategy orders should use object-style strategy.entry({ ... }) and strategy.exit({ ... }).
  • Basket strategies use symbols([...]) plus symbol.*[index].
  • $script, $symbols, $input, and $symbol are legacy compatibility surfaces only.