Bear in mind there's virtually nothing that hasn't already been programmed for MT4/MT5 and is ready for you - and searching gives better results than ChartGPT!
There is a lot of articles for beginners like:
https://www.mql5.com/en/articles/496
https://www.mql5.com/en/articles/100
Using and studying examples (..\MQL5\examples\.. or in the CodeBase) is a lot better than ...
Here is a list of all functions of MQL5 with a short description which enables a kind of keyword search: https://www.mql5.com/en/docs/function_indices
- www.mql5.com
Bear in mind there's virtually nothing that hasn't already been programmed for MT4/MT5 and is ready for you - and searching gives better results than ChartGPT!
There is a lot of articles for beginners like:
https://www.mql5.com/en/articles/496
https://www.mql5.com/en/articles/100
Using and studying examples (..\MQL5\examples\.. or in the CodeBase) is a lot better than ...
Here is a list of all functions of MQL5 with a short description which enables a kind of keyword search: https://www.mql5.com/en/docs/function_indices
Hi Guys,
im learning the basics at the moment
just scratching the surface really, i learnt python a while ago so i get the concept
i have printed to the experts tab
figured out the basics of variables ect
i want to add some text to the chart window from what i can see this is possible
am i on the right track with this at all?
obviously nothing shows up, i just cant seam to see what im missing?
any help would be appricieated
Don't use:
ObjectCreate(0, "MyLabel", OBJ_TEXT, 0, 10, 10);
Change to:
ObjectCreate(0, "MyLabel", OBJ_LABEL, 0, 10, 10);
The codebase in English version of MQL has very less content but Russian version is full of interesting programs in codebase, so i am attaching translated version of Russian codebase library by two popular coders, you can find thousand of codes of EA indicator and script and download and learn them.
ZIP archive removed by moderator. Instead, please provide links to CodeBase or the search keywords instead.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi Guys,
im learning the basics at the moment
just scratching the surface really, i learnt python a while ago so i get the concept
i have printed to the experts tab
figured out the basics of variables ect
i want to add some text to the chart window from what i can see this is possible
am i on the right track with this at all?
obviously nothing shows up, i just cant seam to see what im missing?
any help would be appricieated