You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Based on An attempt at developing an EA constructor article.
This Expert Advisor is a ready-made code for an Expert Advisor. By enabling / disabling input parameters, you can get a lot of trading strategies in a simple way. Indicators (input parameters, declaration and creation of handles) can be taken from the Indicators Code .
Advanced EA constructor for MetaTrader - botbrains.app - article (MT5)
Generally, trading strategies can be reduced to a specific algorithm that can be automated. Trading robots can trade thousands of times quicker than any human, but not every trader is proficient in programming.
botbrains.app is a no-code platform for trading robots development. You don't need to program anything to create a trading robot in the BotBrains editor - just drag the necessary blocks onto the scheme, set their parameters, and establish connections between them.
and
This pattern appeared quite a long time ago (in 1978), but its first description appeared much later, in 1988. Since then, the template has been developing further, giving rise to new approaches.
The idea is to split an existing code into three separate components: Model, View and Controller. According to the MVC pattern, these three components can be developed and maintained independently.
In this article, we will consider a diagram of possible interaction between these three components. This aspect was not covered in the first article, and one of the readers mentioned it in comments. If the interaction mechanism is not thoroughly considered or is inaccurate, all the advantages of using the pattern can be undermined. That is why this topic should be paid special attention to.
Templates to create EAs and Indicators - MT4
The forum
The articles
CodeBase
============
Templates to create EAs and Indicators - MT5
The forum
N/A
The Articles
CodeBase
Hi Sergey and community.
I have been doing Demo account trading on MT5 for almost a year. I have created indicators using ATR and Moving average, that look beautiful! I have downloaded ATR EA trailing stop, but the EA indicator does not seem to match with signal indicator. So, I am guessing, when I should not in my mind have to guess whether the setting of the EA matches the setting of the indicator. That is supposed to be the science behind designing technical indicator that is mechanical and not emotional. So, I would like to be about the business of working with a community of Advisors, who help me learn how to code mt5 using ATRs to trade successfully, consistently, and profitably.
https://www.mql5.com/en/charts/16851924/usdjpy-m15-metaquotes-software-corp
So, here is the link of my chart. I will be so grateful for any help you and the community can provide me. I want to lean how to make the EA do, what the setup of indicators shows me visually to enter, code exit to trail one trade, and exit when ATR changes.
Thanks in advance.
Bernie
Articles
Step-By-Step Guide to writing an Expert Advisor in MQL5 for Beginners
Samuel Olowoyo, 2010.06.09 11:37
The Expert Advisors programming in MQL5 is simple, and you can learn it easy. In this step by step guide, you will see the basic steps required in writing a simple Expert Advisor based on a developed trading strategy. The structure of an Expert Advisor, the use of built-in technical indicators and trading functions, the details of the Debug mode and use of the Strategy Tester are presented.Hi Fernando, Thanks for the link. I will use it and write and the test, and backtest the code. I very much appreciate your sharing this information. I will let you know how the outcome and results. Have a great week! Bernard.
Ready-made templates for including indicators to Expert Advisors (Part 1): Oscillators
The purpose of this article is to create templates for including indicators to EAs. Let's look at indicators from the oscillator category, their input variables, creating an indicator handle and obtaining the required data from it.
Ready-made templates for including indicators to Expert Advisors (Part 2): Volume and Bill Williams indicators
Forum on trading, automated trading systems and testing trading strategies
Trend indicators
Sergey Golubev, 2024.02.14 03:39
Ready-made templates for including indicators to Expert Advisors (Part 3): Trend indicatorsThe article continues the topic of ready-made templates for using indicators in EAs. We have already considered the templates for connecting oscillators and volume and Bill Williams' indicators to EAs.
Here we will look at connecting to EAs and using trend indicators. As in the previous articles, we will display the data received from indicators on the dashboard created in the first article of this series.
The article will not differ in any way from the previous ones in terms of presentation - a brief background overview of each trend indicator and concise codes for connecting and using indicators in EAs.