custom code
-
hi, I am looking for a custom code to change the names of the currency pairs (EURUSD TO EURUSDc EURJPY TO EURJPYc.....).
-
@ilias-0
StringConcatenate(var1, "EURUSD", "c")
This code puts "EURUSDc" into a string variable named var1.
https://www.mql5.com/en/docs/strings/stringconcatenate -
@roar thank you so much