Object's angle not working on MT4 B432

 

Good afternoon,

I am developing an indicator which draws a text label with a 270º angle, which means the label is displayed vertically. Here's the setting code:

ObjectSet(labelName, OBJPROP_ANGLE, 270);

It worked fine in b409, and b419. But for some reason, on b432, it does not and the label is displayed horizontally, ignoring the angle.

Does anyone have a clue why?

Thanks in advance!

 
flaab:

Good afternoon,

I am developing an indicator which draws a text label with a 270º angle, which means the label is displayed vertically. Here's the setting code:

It worked fine in b409, and b419. But for some reason, on b432, it does not and the label is displayed horizontally, ignoring the angle.

Does anyone have a clue why?

Thanks in advance!


            if(Period() < PERIOD_H4)
            {
               ObjectCreate("NewsText"+i, OBJ_TEXT, 0, current, WindowPriceMin()+(WindowPriceMax()-WindowPriceMin())*0.8 );
               ObjectSet("NewsText"+i, OBJPROP_COLOR, clr);
               ObjectSet("NewsText"+i, OBJPROP_ANGLE, 90);
               ObjectSetText("NewsText"+i, news[i][COLUMN_DATE] + " " + news[i][COLUMN_DESCRIPTION] + " " + text, 8);
            }
This is from https://www.mql5.com/en/code/10459 it works still on 432
 

Hi deVries,

I'll give it a second try. It just worked fine and when compiled when the b432 version, it does not :(

(The same code compiled with earlier compilers works fine)

Thanks for the answer, I shall try to find details!