burg extrapolator

burg extrapolator
Download ALL MT5 experts (1593)
YouTube Video Thumbnail



Similar MetaTrader Tools

burg extrapolator

Info

The burg extrapolator is a Expert Advisor for MetaTrader 5 that the expert advisor uses burg's method for linear prediction. linear prediction is based on finding future values as linear functions of previous values.

Usage

This tool is typically used for automated trading on major forex pairs and gold.

Platform

This Expert Advisor works exclusively on MetaTrader 5 (both build 600+ and newer versions).

Setup

Place the downloaded file in MQL5/Experts folder via File ? Open Data Folder in MetaTrader 5.


How to Install and Use burg extrapolator

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

the expert advisor uses burg's method for linear prediction.

Typical Use Case

This Expert Advisor excels in automated trading and technical analysis on MetaTrader 5.

Compatible Platform & Setup

This Expert Advisor works on MetaTrader 5. Place the file in the MQL5/Experts folder and restart the terminal.

Description & Settings

Related: exp amstell-sl - another powerful expert for MetaTrader 5 traders.


the expert advisor uses burg's method for linear prediction. linear prediction is based on finding future values as linear functions of previous values. suppose we have the x[0]..x[n-1] price range where the higher index corresponds more recent prices. the prediction of the x[n] future price is calculated as follows:

Also recommended: js sis t e m 2 - similar expert with strong performance on MetaTrader 5.

x[n] = -sum(a[i]*x[n-i], i=1..p)
here a[i=1..p] are model ratios, and p is the model order. burg's method finds the a[] ratios by decreasing a mean-square error on the last training n-p bars.
input parameters

maxrisk
- maximum risk of all simultaneously performed deals.

ntmax
- maximum number of deals in one direction.

minprofit
- minimal predicted profit at which positions will be opened.

maxloss
- maximal predicted loss at which positions will be closed.

takeprofit
- take profit value.

stoploss
- stop loss value.

trailingstop
- the trailing stop function.

pastbars
- the number of previous bars used to predict future values.

modelorder
- the order of burg's model as a fraction of the number of past bars (0..1).

usemom
- enables detrend of input data: mom(i)=log[p(i)/p(i-1)].

useroc
- enables detrend of input data: roc=100*(p(i)/p(i-1)-1).
only one of usemom and useroc variables can be true, i.e. usemom=true
and
useroc=true is not allowed.
like most of optimized expert advisors, burg extrapolator only works well on training bars. the expert advisor will steadily lose money without a constant re-optimization.

You may also like: beer god ea - excellent alternative for expert users on MetaTrader 5.

Source Code

/

.......

Leave your opinion, ask a question, share some knowledge

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.
© ROBOTFX Free educational tools by RobotFX. Use entirely at your own risk; we are not liable for any financial losses incurred.