I want to increase text label size showing on mt4 chart by code.

 

Hi,


I want to increase text label size showing on mt4 chart by this code. 

Please m

Here is the code


            
 
fd45f4s5:

I want to increase text label size showing on mt4 chart by this code. 

Please modify it so that text size becomes bigger (Text Size around 17).

Also, it shows values up to 10 decimal sometimes. It should show only 2 decimal.

  1. There is no such thing as a “TEXT LABEL.”

    There are text objects and label objects. Use the correct one.
              create anchored labels - MQL4 programming forum (2017)

    Your code as no text or label objects. Comment has no font size.

    See I want to move the EA comment from left to right corner ? - MQL4 programming forum - Page 2 #13 (2022)

  2. “Please modify it?” Do you think there are slaves here for your beck and call? Show us your attempt (using the CODE button) and state the nature of your difficulty.
              No free help (2017)

    Or pay someone. Top of every page is the link Freelance.
              Hiring to write script - General - MQL5 programming forum (2018)

    We're not going to code it for you (although it could happen if you are lucky or the problem is interesting).
              No free help (2017)

  3. Floating-point has an infinite number of decimals, it's you, not understanding floating-point and that some numbers can't be represented exactly. (like 1/10.)
              Double-precision floating-point format - Wikipedia

    See also The == operand. - MQL4 programming forum (2013)

    If you want to see the correct number of digits, convert it to a string with the correct/wanted accuracy.
              question about decima of marketinfo() - MQL4 programming forum (2016)

Reason: