I already said that, but you are showing me piece of code that comes from the constructor of a class. These values are some initial values and they could be changed. The actual values are written in other place, for example:
// Block 2 (Check trades count)
class Block1: public MDL_CheckTradesCount<string,int,string,string,string,string,string,string>
{
public: /* Constructor */
Block1() {
__block_number = 1;
__block_user_number = "2";
_beforeExecuteEnabled = true;
// Block input parameters
MarketMode = "all";
}
public: /* Callback & Run */
virtual void _callback_(int value) {
}
virtual void _beforeExecute_()
{
Market = CurrentSymbol();
}
};
Here you can see this: MarketMode = "all";