What do you mean? Are you saying that you can't do what's in the image below ?!!? 😂😁👍
You can, but the problem is that a lot of what other programmers create, you won't be able to use or access without modifying their code... You'll have to make MetaTrader 5 look like you... Have your own identity.
I hope this image inspires you ... 😁👍 Detail: I've already shown you how to do this ... try studying my older articles and you'll get the same result ... or something close ... 😁👍
PS: I've blocked out some parts because it's a private system, I don't want to show some things that were visible at the time of the SCREEN ... 👍
It's perfectly possible to anchor any indicator not just in the bottom or top corner of the chart, but in any region of the chart. But there is a cost to doing this. Some things that other people do won't be displayed properly in your MetaTrader 5, because many people create dependent applications. 😁👍
Good evening.
//+------------------------------------------------------------------+
//|fdd.mq5 |
//|■ TRADER EXPERT EVOLUTION © 2019 ■ |
//|https://t.me/josimarmiranda |
//+------------------------------------------------------------------+
#property copyright "■ TRADER EXPERT EVOLUTION © 2019 ■"
#property link "https://t.me/josimarmiranda"
#property version "1.00"
#define def_Widget "Widget-Price-Sign.ex5"
#resource "\\" + def_Widget
//#resource "Widget-Price-Sign.ex5"
input ulong MagicNumber = 110608; // Magic number
double ganhos_dia=0;
double ganhos_semana=0;
double ganhos_mes=0;
int handle_Widget = INVALID_HANDLE;
//+------------------------------------------------------------------+
//| Expert initialisation function|
//+------------------------------------------------------------------+
int OnInit()
{
IndicatorRelease(handle_Widget);
handle_Widget = iCustom(_Symbol,_Period,"::" + def_Widget);
// handle_Widget = iCustom(_Symbol,_Period,"::Widget-Price-Sign.ex5");
if(!ChartIndicatorAdd(0,1,handle_Widget)){Print(__FUNCTION__,"■ ■ ERROR -> Error when placing the Widget-Price-Sign indicator");}
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialisation function|
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---
DeleteAllIndicators();
}
//+------------------------------------------------------------------+
//| Expert tick function|
//+------------------------------------------------------------------+
void OnTick()
{
}
bool DeleteAllIndicators()
{
int subWindows = (int)ChartGetInteger(0,CHART_WINDOWS_TOTAL);
for(int i=subWindows-1; i>=0; i--)
{
int inds = ChartIndicatorsTotal(0,i);
if(inds>=1)
{
for(int j=inds; j>=0; j--)
{
string indName = ChartIndicatorName(0,i,j);
ChartIndicatorDelete(0,i,indName);
}
}
}
return(true);
}
coloquei o [indicatorRelease] ante inicializar o indicador,
A função remove um handle de indicador e libera o bloco de cálculo do indicador
IndicatorRelease(handle_Widget);

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
New article Creating a ticker tape panel: Improved version has been published:
How do you like the idea of reviving the basic version of our ticker tape panel? The first thing we will do is change the panel to be able to add an image, such as an asset logo or some other image, so that the user could quickly and easily identify the displayed symbol.
How about adding to the panel the assets that you want to trade? And not only that. Let's go a step further.
How about this: When you click on the asset displayed on the panel, the relevant asset chart is instantly opened so that you can follow the situation and enter a trade when you see that a trend is beginning. And you can do all this in a super easy way, without having to type anything!
The following video demonstrates how the system works in practice.
Author: Daniel Jose