In an EA you have to draw a bunch of small lines, other solution is to implement the logic into an Indicator and shift the buffer
That's what i was afraid of. The logic is very computationally expensive, so duplicating the work in an indicator is simply not an option. A bunch of little lines it is, then.
Thanks.
gatornuke:
A bunch of little lines it is, then.
See https://www.mql5.com/en/forum/130907
A bunch of little lines it is, then.
How to ad a 8 HR time chart .
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
I have an EA that produces an array of future prices. I'd like to be able to plot these on the chart to ensure the EA is working properly. Is there any way to do this, similar to loading the array into an indicator buffer-type object, or do i have to draw a bunch of small lines with ObjectCreate?