Discussion of article "Developing a trading Expert Advisor from scratch (Part 10): Accessing custom indicators"

 

New article Developing a trading Expert Advisor from scratch (Part 10): Accessing custom indicators has been published:

How to access custom indicators directly in an Expert Advisor? A trading EA can be truly useful only if it can use custom indicators; otherwise, it is just a set of codes and instructions.

The highlighted parts are those that we have added to the clean code. The result is as follows:


Why did it work? This is because MQL5 provides means to read and write data between systems. One of the ways to read is to use the CopyBuffer function. It works like below:

Author: Daniel Jose

Reason: