How include image on my EA please ?

 
Hi,
I would like to include some images as Logo on the panel of my MT4 EA.
I want the image to be included in the compiled file so that the customer can have it on their chart when using the EA
How can i do that please ?
Thanks for your answers
 
Your topic has been moved to the section: MQL4 and MetaTrader 4
Please consider which section is most appropriate — https://www.mql5.com/en/forum/172166/page6#comment_49114893
 
HEGUI Morad: I would like to include some images as Logo on the panel of my MT4 EA. I want the image to be included in the compiled file so that the customer can have it on their chart when using the EA. How can i do that please ?

Use a bitmap graphical object ...

OBJ_BITMAP

picture_object

Bitmap

OBJ_BITMAP_LABEL

bitmap_object

Bitmap Label

... and define it as a resource, so that it will be embedded into the final executable file.

Resources - MQL4 programs - MQL4 Reference
Resources - MQL4 programs - MQL4 Reference
  • docs.mql4.com
Resources - MQL4 programs - MQL4 Reference
 
Fernando Carreiro #:

Use a bitmap graphical object ...

OBJ_BITMAP

Bitmap

OBJ_BITMAP_LABEL

Bitmap Label

... and define it as a resource, so that it will be embedded into the final executable file.

Thanks a lot !!
Have a nice day :-)

Reason: