Timeframe Configuration
The timeframe determines the candlestick interval at which your strategy evaluates market data. Algo Architech supports a powerful Multi-Timeframe Matrix (MTF) that lets different parts of your strategy run on independent timeframes simultaneously.
Default Timeframe
When creating a strategy, you set a Default Timeframe that applies globally to all technical rules. This keeps setup fast when you want a single, unified timeframe.
Available Timeframes
| Timeframe | Code | Best For |
|---|---|---|
| 1 Minute | 1m | Scalping, ultra-fast entries |
| 3 Minutes | 3m | Short-term intraday |
| 5 Minutes | 5m | Intraday swing |
| 10 Minutes | 10m | Medium intraday |
| 15 Minutes | 15m | Standard intraday |
| 30 Minutes | 30m | Positional intraday |
| 1 Day | 1d | Swing / Positional trading |
Multi-Timeframe Analysis (MTF)
This is where Algo Architech’s institutional-grade edge becomes clear. While the default timeframe applies globally, every individual indicator rule can override it with its own dedicated timeframe.
This means a single strategy can simultaneously evaluate:
- A daily trend filter (macro direction)
- A 15-minute momentum confirmation (medium-term)
- A 1-minute precision entry signal (micro execution)
How It Works
┌─────────────────────────────────────────────────────────┐
│ STRATEGY: Multi-Timeframe Breakout │
│ Default Timeframe: 15m │
├─────────────────────────────────────────────────────────┤
│ │
│ Entry Rule 1: SMA(200) is Rising → Timeframe: 1d │
│ Entry Rule 2: RSI > 60 → Timeframe: 15m│ (uses default)
│ Entry Rule 3: MACD Crossover Above → Timeframe: 1m │
│ │
│ Adjustment: Net Delta > 0.4 → Timeframe: 1m │
│ │
│ Exit: TSL evaluated on live ticks │
└─────────────────────────────────────────────────────────┘The Trading Edge
Traditional platforms force you to pick one timeframe and stick with it. Algo Architech eliminates that compromise entirely.
Use the daily chart to confirm you’re trading with the macro trend. Use the 15-minute chart for momentum alignment. Then execute your entry on the 1-minute chart for the most precise price possible.
The result: You catch the big wave, but enter at the tightest spread.
Decoupled Evaluation
Each module of the strategy can operate on its own timeframe independently:
| Module | Can Override Timeframe? | Typical Use Case |
|---|---|---|
| Entry Conditions | ✅ Yes, per indicator | Macro trend on 1d, entry on 1m |
| Adjustment Rules | ✅ Yes, independently | Fast 1m risk monitoring while entry uses 15m |
| Exit (TSL/Targets) | Evaluated on live ticks | Instant stop-loss execution regardless of candle |
Important
Entry conditions evaluate on candle closes to prevent false signals from intrabar wicks. However, Exit strategies (Stop-Loss, TSL) evaluate on live ticks for instant protection. See Tick vs Candle Evaluation for details.
Recommendations
| Strategy Style | Recommended Setup |
|---|---|
| Simple Intraday | Single timeframe: 5m or 15m |
| Professional Intraday | Entry: 15m base + 1d trend filter + 1m execution |
| Scalping | Entry: 1m or 3m with 15m trend confirmation |
| Positional / Swing | Entry: 1d with 30m fine-tuning |
Next Steps
With your timeframe configured, it’s time to build entry conditions — the rules that tell your strategy when to enter:
→ Next: Entry Conditions Overview