Zoryu Signal Schema
Overview
Zoryu Signal Schema defines a structured, JSON-first format for representing trading signals in a way that is execution-aware, trackable, and evaluation-ready.
This repository does not provide a trading bot or automated execution model.
Instead, it specifies how trading intelligence should be expressed, validated, and measured within the Zoryu Trade system.
The goal is to standardize signal outputs so they can be consumed by frontends, backends, and evaluation pipelines without ambiguity.
What This Is
- A schema-level artifact for trading signals
- Designed for AI-generated outputs
- JSON-first, deterministic structure
- Suitable for lifecycle tracking (open โ monitor โ close)
- Built for non-custodial execution environments
What This Is NOT
- โ Not a trading bot
- โ Not financial advice
- โ Not an automated execution system
- โ No private keys, wallets, or signing logic
This artifact focuses on representation, not decision-making or execution.
Signal Structure
A signal is represented as a structured object with explicit parameters:
{
"signal_id": "SOL-LONG-001",
"symbol": "SOL",
"direction": "long",
"entry": 100.0,
"take_profit": [105.0, 110.0, 120.0],
"stop_loss": 95.0,
"confidence": 78,
"risk_reward": 2.6,
"reasoning": "Breakout with volume confirmation"
}