This page explains all user-visible input parameters of the AlgoWay MT5 Expert Advisor, version 1.84. It is a practical reference for configuring webhook-based execution, symbol mapping, sizing, execution mode, risk controls, session filters, and auto-flat behavior.
Each parameter changes how the EA interprets incoming alerts and how it behaves inside MetaTrader 5. Some settings define connectivity, others affect execution logic, and others control risk, sessions, and trade management.
The main connection field is the webhook identifier copied from your AlgoWay dashboard.
b7534616-6c8c-4582-8af4-7c143d323231
The trading mode defines how the EA reacts when a new signal arrives for the same symbol.
flat signal closes all open positions for that symbol.buy and sell positions open at the same time. A flat signal can specify which side to close with close_side=long or close_side=short. If no side is specified, both sides are closed.Buy and Sell. When a new signal arrives, the EA closes the previous position and immediately opens a new one in the opposite direction. This keeps the current open trade aligned with the latest signal direction.This setting controls how incoming size values are converted into MT5 lot size.
final lot = incoming size × coefficient
Example: if the incoming size is 10 and the coefficient is 0.001, the final lot size becomes 0.01.
Execution parameters define how the EA sends trade requests to the broker.
Available modes:
Available modes:
1 pip = 0.0001 on many 5-digit FX symbols.Trailing parameters control whether the EA moves Stop Loss automatically after a trade moves in profit.
trailing_pips.20.0.Symbol mapping is used when TradingView symbol names do not match the broker’s MT5 symbols exactly. If mapping is empty, the EA uses the ticker exactly as received.
| TV Ticker | Broker Symbol |
|---|---|
BTCUSDTPERP |
BTCUSDTm |
EURUSD |
EURUSD.a |
| (add as needed) | (add as needed) |
These parameters limit how much the EA is allowed to lose during the trading day or within one position.
Session settings restrict when the EA is allowed to execute trades.
09:00–18:00. Trades outside this interval are blocked.Auto-flat settings define whether the EA should close open positions automatically before a specified cutoff.
Available modes:
30.trailing_pips.flat signals may target one side only, for example close_side=long or close_side=short.AlgoWay MT5 EA v1.84 gives the trader direct control over signal interpretation, execution mode, sizing logic, session filters, and risk controls. Stable automation depends on correct parameter setup. If the webhook ID is valid, symbol mapping is correct, and execution settings match the broker environment, the EA can process alerts in a predictable and controlled way.