Define market conditions that trigger strategy execution
The signal system detects market events and triggers bound strategies. Instead of running strategies on a fixed schedule, signals let you react to specific conditions — price breakouts, indicator crossovers, volume spikes, and more.
The background scheduler periodically evaluates all active signal pools. When a pool’s conditions are satisfied, it triggers the execution of bound strategies with the relevant context.
A signal pool groups multiple signals with a set of monitored symbols and defines how the signals combine.
AND logic
OR logic
All signals in the pool must fire simultaneously for the trigger to activate. Use AND logic for high-confidence setups that require multiple confirmations.
Use HyperAI to generate signal definitions from natural language:
curl -X POST https://api.hyperoru.com/api/hyper-ai/chat \ -H "Content-Type: application/json" \ -d '{ "message": "Create a signal pool that detects BTC breakouts above resistance with volume confirmation" }'
Combine signal-triggered and scheduled strategies for the same trader. Use signals for reactive entries and schedules for periodic portfolio rebalancing.