mirror of
https://github.com/alexcercos/AlgoMasterNNFX-V1.git
synced 2025-07-30 23:47:48 +00:00
18 lines
584 B
MQL5
18 lines
584 B
MQL5
|
|
#include "../Base.mqh"
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| All + custom symbols Processor |
|
|
//+------------------------------------------------------------------+
|
|
class CSymbolProcessorAllAndCustom : public CSymbolProcessorBase
|
|
{
|
|
protected:
|
|
virtual void PreProcessString(string &symbol_string, string &custom_string);
|
|
};
|
|
|
|
void CSymbolProcessorAllAndCustom::PreProcessString(string &symbol_string, string &custom_string)
|
|
{
|
|
SetStringToAllSymbols(symbol_string);
|
|
|
|
symbol_string += ","+ custom_string;
|
|
}
|