Please see code below. I have written code that searches in real-time ALL available markets in MetaTrader and returns their lowest price from the last 10 bars (1 hour period) as an Alert. It is working however the “Alert” results are shown individually for each market. I need ALL the results in ONE Alert. How do I approach this? The number of markets is very large and their number can change. As such, flexible code code is required. I suspect some kind of variable Array or Enum may be a solution (correct me if I am wrong) but I am unsure how to approach this. Could you kindly point me in the right direction? Thanks in advance for the help and feedback.
Hi CT,
There are several issues with this code snippet. Please allow me to offer you some friendly constructive criticism.
- The time-frame input should be ENUM_TIMEFRAMES instead of string.
- Only use `extern` if you need to programmatically change the user input (almost never), otherwise use `input`.
- The loop is incorrect. It needs to start the index one less than the total symbols and end up at 0
- There is no checking to see if the data is ready for the iterated symbol. An easy way to get around this is to use CopyX instead.
- The result string needs to concatenate during each loop.
- The final alert needs to happen outside of the loop.
Stylistically:
- Variable names should begin with a lower-case letter. CamelCase is used to define ClassNames.
- When you continue a function call or expression to the next line you should indent it.
- Instead of StringConcatenate you can use StringFormat which is cleaner and you can see exactly how the string will turn out.
- You should alway initialize your variables. This is a good habit to get into for when you switch to MQL5 and/or you begin to make your own classes.
The end result would look something like this:
#property strict input ENUM_TIMEFRAMES inp_period = PERIOD_H1; input int inp_specified_bars = 10; // Enter a total number of bars. int start() { string alert_string = NULL; for(int i=SymbolsTotal(false)-1; i>=0; i--) { string symbol = SymbolName(i, false); double lows[]; if(CopyLow(symbol, inp_period, 0, inp_specified_bars, lows) > 0) { double lowest = lows[ArrayMinimum(lows)]; int digits = (int)SymbolInfoInteger(symbol, SYMBOL_DIGITS); alert_string += StringFormat( "%s LOW: %s | ", symbol, DoubleToString(lowest, digits) ); } } Alert(alert_string); return 0; }
Hi CT,
There are several issues with this code snippet. Please allow me to offer you some friendly constructive criticism.
- The time-frame input should be ENUM_TIMEFRAMES instead of string.
- Only use `extern` if you need to programmatically change the user input (almost never), otherwise use `input`.
- The loop is incorrect. It needs to start the index one less than the total symbols and end up at 0
- There is no checking to see if the data is ready for the iterated symbol. An easy way to get around this is to use CopyX instead.
- The result string needs to concatenate during each loop.
- The final alert needs to happen outside of the loop.
Stylistically:
- Variable names should begin with a lower-case letter. CamelCase is used to define ClassNames.
- When you continue a function call or expression to the next line you should indent it.
- Instead of StringConcatenate you can use StringFormat which is cleaner and you can see exactly how the string will turn out.
- You should alway initialize your variables. This is a good habit to get into for when you switch to MQL5 and/or you begin to make your own classes.
The end result would look something like this:
#property strict input ENUM_TIMEFRAMES inp_period = PERIOD_H1; input int inp_specified_bars = 10; // Enter a total number of bars. int start() { string alert_string = NULL; for(int i=SymbolsTotal(false)-1; i>=0; i--) { string symbol = SymbolName(i, false); double lows[]; double highs[]; if(CopyLow(symbol, inp_period, 0, inp_specified_bars, lows) > 0 && CopyHigh(symbol, inp_period, 0, inp_specified_bars, highs) > 0 ){ double lowest = lows[ArrayMinimum(lows)]; double highest = highs[ArrayMaximum(highs)]; int digits = (int)SymbolInfoInteger(symbol, SYMBOL_DIGITS); alert_string += StringFormat("%s: low=%s, high=%s | ", symbol, DoubleToString(lowest, digits), DoubleToString(highest, digits) ); } } Alert(alert_string); return 0; }
You need to tweak the StringFormat to format however you like.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Please see code below. I have written code that searches in real-time ALL available markets in MetaTrader and returns their lowest price from the last 10 bars (1 hour period) as an Alert. It is working however the “Alert” results are shown individually for each market. I need ALL the results in ONE Alert. How do I approach this? The number of markets is very large and their number can change. As such, flexible code code is required. I suspect some kind of variable Array or Enum may be a solution (correct me if I am wrong) but I am unsure how to approach this. Could you kindly point me in the right direction? Thanks in advance for the help and feedback.