Scale conversion.
-
I want to normalize the result that is in the price in the scale of 0 to 100, how to proceed ???
<FOREX.EUR> = (EURUSD + EURGBP + EURCHF + EURJPY) / 4
-
MQL Math function
-
@josecortesllobat This function only removes the decimal places, I need to convert a scale result from 0 to 100.
-
I am not sure if you will get what you want but it might be possible by using a formula like the RSI calculation one

EURUSD = 1.15489
EURGBP = 1.32874
EURCHF = 1.12367
EURJPY = 1.159FOREX.EUR = 1.19158
FOREX.EUR_100 = 100 - (100/(1+1.19158)) = 54.37
-
Thank you for your attention my friend, I will test here.