usrednenie dynamic
Info
The usrednenie dynamic is a Expert Advisor for MetaTrader 4 that this trading strategy employs a mean reversion approach, utilizing stohastic and stddiv for entry signals. sell conditions: stoch > 80% and stddev < 50%buy conditions: stoch < 20% and stddev < 50%strategy tester reportstrategy: usredneniedynamicbroker: alpariuk-demo - micro+classic (build 445)symbol: gbpusd (great britain pound vs us dollar)timeframe: 1 minute (m1)tested period: 2022.
Usage
This tool is typically used for automated trading on major forex pairs and gold.
Platform
This Expert Advisor works exclusively on MetaTrader 4 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL4/Experts folder via File ? Open Data Folder in MetaTrader 4.
How to Install and Use usrednenie dynamic
1. Installation: Open the "File" menu, select "Open Data Folder," navigate to MQL/Experts, paste your file, and restart the terminal.
2. Activation: Drag the EA from the Navigator onto a chart, ensure "Allow live trading" is checked in the Common tab, and verify the AutoTrading button is green.
3. Optimization: Right-click your chart, choose "Expert List," click "Properties" to adjust inputs, and save your preferred setup as a set file for future use.
4. Maintenance: Regularly check the "Experts" tab in the terminal window to monitor trade logs and potential execution errors.
Frequently Asked Questions
Q: Why is my EA not opening trades? A: Check the "AutoTrading" button, ensure "Allow live trading" is enabled, and verify your broker allows automated trading on your account type.
Q: Can I run multiple EAs on one chart? A: No, each chart can only host one active EA; however, you can open multiple charts for different currency pairs to run several EAs.
Q: What does the "smiley face" icon mean? A: A smiley face in the top-right corner of the chart indicates the EA is successfully running; a frowny face means it is disabled.
What this tool does
this trading strategy employs a mean reversion approach, utilizing stohastic and stddiv for entry signals.
Typical Use Case
This Expert Advisor excels in automated trading and technical analysis on MetaTrader 4.
Compatible Platform & Setup
This Expert Advisor works on MetaTrader 4. Place the file in the MQL4/Experts folder and restart the terminal.
Description & Settings
Related: dynamic stop loss - another powerful expert for MetaTrader 4 traders.
this trading strategy employs a mean reversion approach, utilizing stohastic and stddiv for entry signals.sell conditions: stoch > 80% and stddev < 50%
Also recommended: over hedge expert advisor for metatrader - similar expert with strong performance on MetaTrader 4.
buy conditions: stoch < 20% and stddev < 50%
strategy tester report
strategy: usredneniedynamic
broker: alpariuk-demo - micro+classic (build 445)
symbol: gbpusd (great britain pound vs us dollar)
timeframe: 1 minute (m1)
tested period: 2022.02.01 00:00 - 2024.11.23 23:59 (2022.02.01 - 2024.11.25)
model: open prices only (suitable for expert advisors)
parameters:
- lot=0.1
- mingrid=130
- stochperiod=50
- stochperiodslow=50
- stddevperiod=40
- difprice=0.2
bars in test: 1008687
ticks modelled: 2012856
modelling quality: n/a
mismatched charts errors: 0
initial deposit: 10000.00
total net profit: 33842.23
gross profit: 78045.99
gross loss: -44203.76
profit factor: 1.77
expected payoff: 16.29
absolute drawdown: 3841.22
maximal drawdown: 8511.23 (31.36%)
relative drawdown: 44.55% (4948.26)
total trades: 2077
short positions (won %): 1040 (71.44%)
long positions (won %): 1037 (70.68%)
profit trades (% of total): 1476 (71.06%)
loss trades (% of total): 601 (28.94%)
largest profit trade: 2809.24
largest loss trade: -1560.24
average profit trade: 52.88
average loss trade: -73.55
maximum consecutive wins (profit): 21 (1016.46)
maximum consecutive losses (loss): 4 (-1364.68)
maximal consecutive profit (wins): 2934.12 (7)
maximal consecutive loss (losses): -2685.67 (3)
average consecutive wins: 3
average consecutive losses: 1
You may also like: updated nevalyashka - excellent alternative for expert users on MetaTrader 4.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
extern double lot=0.1;
extern int mingrid=130;
extern int stochperiod=50;
extern int stochperiodslow=50;
extern int stddevperiodentry=40;
extern int stddevperiodgrid=1200;
extern double difprice=0.0945;
double grid;
.......
⚠ Limitations & Risk Warning
- This tool is provided for educational and testing purposes only.
- Past performance does not guarantee future results.
- Trading involves substantial risk of loss. Use on a demo account first.
- Results may vary depending on market conditions, broker, and settings.
- We recommend thorough backtesting and forward testing before using with real funds.