Check the anchor points.
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

Hello friends, today I get this error that I have never encountered before.
Two objects, with the same Y coordinates, remain positioned at a different distance from the margin.
What can this be due to? Same font, size, and position, but it's misaligned. Very thanks
double day = Profits_Generados(PERIOD_D1,1440 * 60); string Generated_Profits = EA_Comment + "1"; if(ObjectFind(Generated_Profits) == -1) { ObjectCreate(Generated_Profits, OBJ_LABEL, 0, 0, 0); ObjectSet(Generated_Profits, OBJPROP_CORNER, CORNER_LEFT_LOWER); ObjectSet(Generated_Profits, OBJPROP_XDISTANCE, 20+ DashBoard_X); ObjectSet(Generated_Profits, OBJPROP_YDISTANCE, 15); } ObjectSetText(Generated_Profits, "Profit Day: " + DoubleToStr(day, 2), FontSize, "Arial Black", Color2);