rtrades :
What code can be used to add text information in the following panel window?
I'm a beginner coder.. thanks for your help...
My idea is to add some statistic information in this screen from my indicator.
I'm using the following code to start it.
Thank you..
Use CLabel

Documentation on MQL5: Standard Library / Panels and Dialogs / CLabel
- www.mql5.com
CLabel - Panels and Dialogs - Standard Library - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
Hi rtrades
---- include ---- #include <Controls\Label.mqh> --- define --- CLabel label; --- used ---- label.Create(0,"example",0,5,25,45,65); label.Text("example text"); ---- add AppWindow ---- AppWindow.Add(label);
it's a simple way to use ...

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
What code can be used to add text information in the following panel window?
I'm a beginner coder.. thanks for your help...
My idea is to add some statistic information in this screen from my indicator.
I'm using the following code to start it.
Thank you..