Trading StrategyJuly 31, 2026 · 8 min read

MT4 templates: Create, Save & Use Charts + Profiles (2026)

Step-by-step guide to creating, importing and applying MT4 and MT5 chart templates, profiles and simple trade templates — includes examples, copy-paste downloads and a printable checklist to reduce setup errors and build consistent routines.

Good execution starts before you click the Buy or Sell button. MT4 templates, profiles and simple trade templates remove repetitive work, reduce setup mistakes and help you follow the same pre-trade routine every time. This guide gives clear, platform-accurate steps for MetaTrader 4 and MetaTrader 5 (MT4/MT5), realistic worked examples for position sizing and margin, copy-paste example files you can save locally, and a checklist you can use before every trade.

Quick definitions

  • Chart template (.tpl): saves a chart's indicators, colours, line objects and visual settings so you can apply them to any symbol/timeframe.
  • Profile: a saved workspace — the arrangement of multiple chart windows and their (optional) template assignments.
  • Trade template (informal): a saved trade entry checklist or pre-filled order parameters (lot, stop, take) you keep as a simple file or spreadsheet for quick manual entry. MT4/MT5 don't have built-in order-template files the same way some platforms do, so traders save their own CSV or use an EA to automate order presets.

Why use templates and profiles?

  • Speed: apply a full chart setup in one click instead of rebuilding indicators and colours.
  • Consistency: same indicators, same scales and same visual filters every time you analyse.
  • Error reduction: fewer missed settings (wrong TF, wrong indicator period) that lead to execution mistakes.
  • Testability: keep one template per strategy so you can compare results across markets and timeframes.

Exact steps — MT4 (create, save, import, apply)

  1. Open MT4 and set up a chart the way you want (symbol, timeframe, indicators, colours and objects).
  2. Right-click inside the chart > Template > Save Template…
  3. Give a clear name, e.g. H1_MACD_RSI.tpl, then Save. MT4 saves .tpl files in the Templates folder inside the terminal directory.
  4. To apply: right-click > Template > choose your template. The chart will update immediately.
  5. To import a template file you downloaded: close MT4, copy the .tpl to the Templates folder (typical Windows path: C:\Users\<you>\AppData\Roaming\MetaQuotes\Terminal\<instanceID>\templates), restart MT4 and the template will appear in the Template menu.

Common pitfall: if the template uses custom indicators (.ex4/.mq4), copy the indicator files into ...\MQL4\Indicators, then restart MT4. Missing indicator errors are the main reason templates appear broken after import.

Exact steps — MT5

  1. Configure a chart in MT5 (indicators and appearance).
  2. Charts > Templates > Save Template… — name it e.g. H4_Breakout.tpl.
  3. To apply, Charts > Templates > Load Template and choose it. Templates live in the terminal's templates folder (similar path to MT4).
  4. Profiles in MT5 are managed via File > Profiles > Save As. Profiles save the layout; templates still save chart content.

Saving and exporting profiles (MT4 & MT5)

  • Arrange your chart windows (for example: 6-chart grid with EURUSD, GBPUSD, USDJPY, AUDUSD, GOLD and US30).
  • File > Profiles > Save As > give a name like MyLive-Station.
  • To move profiles between machines, copy the profile folder from the terminal directory: ...\profiles\<ProfileName> and also copy any .tpl and custom indicator files. Zip them and move to the target PC, placing files in the same relative folders.

How to manage versions and naming conventions

Use clear, consistent names to avoid confusion. Example naming: <TF>_<Strategy>_v01.tpl (H1_MACD_RSI_v01.tpl). Keep a simple changelog text file in the same folder listing small changes (indicator periods, alert toggles).

Trade templates: a simple, portable approach

Because MT4/MT5 do not store "order presets" as a native text template, create a tiny CSV you open before placing an order. Save it locally and use it as your one-click checklist for manual entries. Copy the text below and save as trade_template_example.csv (comma-separated). Open it in Notepad or Excel and edit before each trade.

symbol,side,entry,stop,stop_pips,take,reward_pips,account_usd,risk_pct,lot_size_comment
EURUSD,BUY,1.08650,1.08400,25,1.08900,25,500,1,0.02
GBPUSD,SELL,1.26300,1.26600,30,1.25900,40,500,1,0.02

How to use the CSV: open it, pick the line for the planned trade, calculate lot size using the formula below and set the order in MT4/MT5. Keep final numbers in the CSV for journaling.

Position sizing and worked example (accurate maths)

Position sizing formula (USD account):

lot size (standard lots) = risk_amount / (stop_pips × pip_value_per_standard_lot)

Where pip_value_per_standard_lot ≈ $10 for most USD-quoted pairs (EURUSD, GBPUSD). For cross pairs where USD is not the quote, the pip value changes slightly — see your broker. For exact formulas and more pair examples, read our guide on position sizing: https://forexfluency.com/blog/forex-position-sizing-for-beginners-step-by-step-2026

Worked example:

  • Account = $500
  • Risk per trade = 1% → risk_amount = $5
  • Entry: EURUSD 1.08650, Stop: 1.08400 → stop = 25 pips
  • pip_value_per_standard_lot ≈ $10

lot size = 5 / (25 × 10) = 5 / 250 = 0.02 standard lots (that is 2 micro-lots, or 2,000 units).

Margin example (correct formula)

Margin = (lot_size × contract_size × price) / leverage

Example: To open 1 standard lot EURUSD at 1.1000 with 100:1 leverage:

Margin = (1 × 100,000 × 1.1000) / 100 = $1,100

Reminder: always check the margin required with your broker for the exact symbol and leverage. For more on margin, see: https://forexfluency.com/blog/what-is-margin-in-forex-beginner-guide-examples-2026

Checklist — use before every trade (copy this into your trading journal)

  • Chart template applied (name visible in Template menu)
  • Correct symbol and timeframe selected
  • Indicators confirm the setup per strategy rules
  • Spread acceptable for the strategy
  • Stop loss placed and measured (pips)
  • Lot size calculated and checked (risk ≤ planned %)
  • Take profit decided or exit plan recorded
  • Order comment or ticket copied to journal
  • Trade row saved to CSV trade template and dated

Troubleshooting common template problems

  • Template imports but shows errors: probably missing custom indicators. Copy their .ex4/.mq4 files to ...\MQL4\Indicators and restart MT4.
  • Templates look wrong on a different monitor or resolution: save new colours or check chart scale settings.
  • Profile won't transfer between computers: ensure you copied both the profile folder and the Templates + Indicators folders from the terminal directory.

Workflow examples — two quick setups

1) Trend-following H1 station (example)

  • Template name: H1_Trend_MA_MACD.tpl
  • Indicators: 50 SMA, 200 SMA, MACD (12,26,9), ATR(14) for stop calculation
  • Profile: 6 charts — H1 for each major pair. Save profile as H1-Trend-Station.

2) Breakout M15 station (example)

  • Template name: M15_Breakout.tpl
  • Indicators: Volume, EMA(20), Pivot lines, custom breakout alert
  • Profile: 8 small M15 charts across correlated pairs; save as M15-Breakout.

Backing up and moving your setup

Periodically zip these folders from your terminal directory and store them in cloud storage (Google Drive, OneDrive). Essential folders:

  • templates — .tpl files
  • profiles — profile folders
  • MQL4\Indicators or MQL5\Indicators — custom indicators
  • MQL4\Experts or MQL5\Experts if you use EAs for order templates

Practice this on demo — free demo link

If you don't already have a demo account, open one and practice applying templates and executing the trade checklist. We use Exness for many examples; open a free demo account here to follow along: open a free Exness demo account (demo first, always).

Where to learn the full skillset

Templates and profiles are part of a repeatable trading routine. To learn position sizing, system-building and disciplined execution in a structured path, browse our self-paced courses at https://forexfluency.com/courses. If you want the complete process for building and testing a trading system (including templates, rules and journaling), see our course pathway at the same link: https://forexfluency.com/courses.

Short trouble-free checklist you can copy to Notepad

1) Apply chart template: __________________
2) Confirm TF & symbol: __________________
3) Verify indicators: ______________________
4) Measure stop (pips): ___  Lot size: ___
5) Place SL and TP: _______________________
6) Save trade in CSV journal: _____________

Final practical tips

  • Keep one template per strategy. Don't jam multiple strategies' indicators into one template.
  • Test templates only on demo for at least 30–90 trades before using with real money.
  • Store a compact "minimum" template (price, one indicator) as a rescue if a heavy template misbehaves on a slow machine.
  • Use clear naming and versioning; keep a short changelog text file next to your templates.

Resources and related reading

  • Position sizing and examples: https://forexfluency.com/blog/forex-position-sizing-for-beginners-step-by-step-2026
  • How to build a trading system (put templates into rules): https://forexfluency.com/blog/how-to-build-a-forex-trading-system-in-2026-step-by-step-guide
  • Margin explained: https://forexfluency.com/blog/what-is-margin-in-forex-beginner-guide-examples-2026
  • Manage drawdown and consistent routines: https://forexfluency.com/blog/how-to-reduce-drawdown-in-forex-2026-a-practical-step-by-step-guide

Want guided, step-by-step lessons?

Templates are one small but crucial part of a working trading routine. Our courses break the full workflow into ranked lessons (from beginner to advanced), with worked examples, quizzes and action tasks so you can practice on demo and build confidence. Browse and enrol today at https://forexfluency.com/courses.

Risk warning: Trading forex on margin carries a high level of risk and may not be suitable for all investors. Never trade with funds you cannot afford to lose.

Frequently Asked Questions

What exactly is saved in an MT4 .tpl file?

A .tpl (template) file stores chart visual settings: chart type, colours, indicator objects and object positions. It does not include custom indicator (.ex4/.mq4) files themselves — you must copy those separately into the platform's Indicators folder.

How do I move my MT4 templates and profiles to a new PC?

Close MT4, copy the Templates folder (contains .tpl files), the Profiles folder, and any custom indicators from MQL4\Indicators. Paste them into the same relative folders of the new terminal install, then restart MT4.

Can I use the same template on MT5?

No. MT4 and MT5 templates are not interchangeable. Recreate the template in MT5 or save indicator settings there and then use Charts > Templates > Save Template in MT5.

Why does a template import but show errors or missing indicators?

Most likely the template uses custom indicators you haven't copied. Place the indicator files into the Indicators folder (MQL4 or MQL5 depending on platform) and restart the terminal.

Do templates save stop loss and take profit levels?

Chart templates do not save SL/TP order values. Use a trade template CSV or an Expert Advisor to store order presets, or manually enter SL/TP as part of your checklist before execution.

How should I name templates so I don't get confused?

Use a consistent convention such as __v01.tpl (e.g., H1_Trend_MA_v01.tpl). Keep a small changelog file listing edits and version numbers.

Can templates help me reduce execution errors?

Yes. Templates speed configuration and ensure identical indicator settings across charts. Combined with a pre-trade checklist (included above), they significantly reduce setup mistakes.

Where can I practise using templates safely?

Open a free demo account (practice first) and test your templates and checklist there. If you want to follow the examples used in this guide, open a demo with Exness at open a free Exness demo account.

Risk warning: Forex trading is high-risk. This is education, not financial advice — never trade with funds you cannot afford to lose.