Why strategy structure matters
When Trinigence turns a trading idea into a strategy, the result is not text - it is a formal, deterministic structure. Understanding this structure helps you:- interpret backtest results correctly
- debug unexpected behavior
- iterate without breaking logic
The core components of a strategy
Every Trinigence strategy is composed of the same fundamental parts.Market & Timeframe
Defines what is traded and how often logic is evaluated.
Entry Logic
Rules that open a position when conditions are met.
Exit Logic
Rules that close a position deterministically.
Risk Management
Constraints that limit losses and define trade behavior.
Market & timeframe
A strategy always starts with:- a specific symbol (e.g. BTC/USDT)
- one or more timeframes
Multi-timeframe strategies separate filter timeframes from execution timeframes.
Entry logic
Entry logic defines when a trade opens. It consists of:- one or more conditions
- logical operators (AND / OR)
- optional filters
- indicator thresholds
- crossovers
- trend direction
- breakout conditions
Exit logic
Exit logic defines how and when a trade closes. Common exit types:- fixed take profit
- fixed stop loss
- indicator-based exits
- time-based exits
Risk management
Risk rules define how much the strategy can lose. This includes:- stop loss levels
- position sizing rules
- maximum exposure
- trade limits
Changing risk parameters often has a larger impact than changing entries.
Strategy flow
At each new candle:- Filters are evaluated
- Entry conditions are checked
- If a trade is open, exit conditions are evaluated
- Risk rules are enforced
Determinism and reproducibility
Every strategy in Trinigence is:- deterministic
- reproducible
- free of hidden state
How ATI maps ideas to structure
ATI translates your idea by:- identifying required components
- normalizing indicators and parameters
- validating logical completeness
- surfacing assumptions
What Trinigence fills automatically
See which details ATI infers safely.
Common structure misunderstandings
Why did my strategy open fewer trades than expected?
Why did my strategy open fewer trades than expected?
Filters, timeframe choices, or exit logic may be more restrictive than intended.
Why did exits trigger earlier than I expected?
Why did exits trigger earlier than I expected?
Exit conditions are evaluated on every candle, not only at entry.
Can multiple exits trigger at once?
Can multiple exits trigger at once?
Yes. The first exit condition met closes the trade.
How to use this knowledge
Understanding structure helps you:- modify one component at a time
- reason about cause and effect
- avoid accidental strategy changes
Improving a strategy
Learn how to iterate safely.
What to read next
Backtesting & metrics
Learn how strategy behavior is evaluated.
Iteration & optimization
Improve performance without overfitting.
Writing trading ideas
Map ideas to structure more cleanly.
FAQ & troubleshooting
Common structural questions answered.
Clear structure leads to predictable behavior.
Predictable behavior leads to better decisions.