Atlas DOCS
CLI

How to use it

Find tools

bash
atlas tools                 # list every tool
atlas tools --search flow   # find tools by word
atlas <tool> --help         # see one tool's settings

Call a tool

Add each setting as a flag:

bash
atlas stock-quote --symbol SPY
atlas options-chain --symbol SPY --expiration 2026-06-20
atlas price-chart --symbol SPY --out ./charts   # save chart pictures to a folder
  • Flag names use dashes. --from-date becomes from_date in the request.
  • For a setting inside another setting, use a dot: --updates.is-active true.
  • For a list, repeat the flag: --tools Stock-Quote --tools Options-Chain.

Build and run automations

bash
# Workflows (repeat on a schedule)
atlas workflow-list
atlas workflow-create --name "SPY GEX signal" --schedule "30 9 * * 1-5" \
  --tools Stock-Quote --instruction "Every morning, check SPY net gamma" --status active
atlas workflow-run --workflow-id <id>

# Tasks (run one time)
atlas list-tasks
atlas create-task --name "Close SPY 3:55" \
  --instruction "Close my SPY position" --schedule-times 15:55
atlas run-task --task-id <id>

# Alerts
atlas list-alerts
atlas create-alert --name "SPY sweeps" --symbol SPY --alert-type flow \
  --conditions.min-premium 50000 --conditions.side call

Watch live feeds

bash
atlas alerts --symbol SPY --name greek_exposure
atlas flow stream --symbol NVDA