Warm tip: This article is reproduced from stackoverflow.com, please click
display image metatrader4 mql4 web

insert image from web

发布于 2020-08-06 14:53:46

Cracking my head around that - is it even possible in a mql4 indicator ? Would love to have an image on my server and display it on my chart through a link.

If it's not doable, then is there any option to display an image in mt4 without the user having access to the image?

Thanks in advance for all the help.

Cheers!

Questioner
Chris Dębski
Viewed
24
Daniel Kniaz 2020-05-17 17:23

Welcome to SOF! Well, it is doable I believe, but never tried.

What you need:
* request a picture as a set of bytes, an example is here
* draw an object (type = OBJ_BITMAP once you have it;
* your own webserver that returns a picture (at list for tests, but you may found some resources online, there must be plenty of them who wish to share their pictures)
In order to go forward, show your MCVE code to get more help.