Skip to Content
Strategy BuilderTimeframe Configuration

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

TimeframeCodeBest For
1 Minute1mScalping, ultra-fast entries
3 Minutes3mShort-term intraday
5 Minutes5mIntraday swing
10 Minutes10mMedium intraday
15 Minutes15mStandard intraday
30 Minutes30mPositional intraday
1 Day1dSwing / 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:

ModuleCan Override Timeframe?Typical Use Case
Entry Conditions✅ Yes, per indicatorMacro trend on 1d, entry on 1m
Adjustment Rules✅ Yes, independentlyFast 1m risk monitoring while entry uses 15m
Exit (TSL/Targets)Evaluated on live ticksInstant 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 StyleRecommended Setup
Simple IntradaySingle timeframe: 5m or 15m
Professional IntradayEntry: 15m base + 1d trend filter + 1m execution
ScalpingEntry: 1m or 3m with 15m trend confirmation
Positional / SwingEntry: 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

Last updated on