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
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.06.29 17:42
Developing a trading Expert Advisor from scratch (Part 9): A conceptual leap (II)
In the previous part, we created a basic system which enables the use of templates within a floating window. Although we have made many changes, the code is not yet finished. This has been done intentionally in order to keep the explanation simple, because while the use of templates in floating widows is rather simple, the use of objects is something much more complicated. So, be ready for a completely new job.
----------------
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.06.30 06:19
Developing a trading Expert Advisor from scratch (Part 10): Accessing custom indicators
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.01 07:35
Developing a trading Expert Advisor from scratch (Part 11): Cross order system
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.02 08:33
Developing a trading Expert Advisor from scratch (Part 12): Times and Trade (I)
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.05 06:02
Developing a trading Expert Advisor from scratch (Part 13): Time and Trade (II)
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.12 07:54
Developing a trading Expert Advisor from scratch (Part 14): Adding Volume At Price (II)
Our EA already has some resources which assist in trading — we have added them in our previous articles. However, this EA has some issues with visualization and resizing. They do not interfere with trading, but at some points this leads to a mess on the screen until you force it to refresh. In addition, there are still some things missing that would provide valuable information for us. These are specific things, but the information can be necessary.
So, let's start implementing these new improvements. This interesting article can provide some new ideas and methods of presenting information. At the same time, it can assist in fixing minor flaws in projects.
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.14 07:36
Developing a trading Expert Advisor from scratch (Part 15): Accessing data on the web (I)But thanks to MQL5, which is very close to C/C++, programmers can do more than just work with a chart as is: we can search, filter, analyze data on the web and thus perform operations in a much more consistent way, than most traders because we are going to use all the computing power in our favor.
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.23 10:40
In that article, we considered how to access these sites and how to find and retrieve information from them in order to use it in the platform. But it doesn't end there, as simply capturing data doesn't make much sense. The most interesting part is to learn how to take this data from the platform and use it in an Expert Advisor. The method to do this is not so obvious and so it is hard to implement without knowing and understanding all the functions available in MetaTrader 5.
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.29 07:25
In this article, we will discuss how to get around this limitation.
Forum on trading, automated trading systems and testing trading strategies
How To Create EA MQL5
Sergey Golubev, 2022.07.30 07:07
Of course, we could add some things to the original system so that we have some information about orders, both open and pending. But this would turn our code into a Frankenstein which would ultimately make a real nightmare out of the improvement process. Even if you have your own methodology, it will be lost over time as the code gets too big and too complicated.
So, we need to create a completely different system in terms of the order model we use. At the same time, it should be easy for the trader to understand, while providing all the information we need to work safely.