cyberglassed
cyberglassed
cyberglassed
Added topic Evaluating math formula from string
My question is very simple. Imagine we have the following string: string formula = "pow((1 + 3) * 0.7482, 0.5)" ; Is it possible to calculate that formula which will be provided during run time as a string? The result should be: 1.7299710980244727
cyberglassed
Left feedback to developer for job Tips for Nguyen Nga
cyberglassed
Left feedback to developer for job EA with nested Indicators
cyberglassed
Added topic On the Strategy Tester, I need to read the values of one Indicator inside another Indicator, both loaded within an Expert Advisor
Hello again folks. I have one Expert Advisor (EA) which loads 2 indicators. Indicator 1 is a moving average (IND_MA / top indicator) and Indicator 2 is a custom indicator (IND_CUSTOM / bottom indicator) which reads the information from the moving
cyberglassed
Added topic Does somebody know when next build will be released?
Hello, does somebody know when next build will be released?, the date of next release is documented somewhere?. Regards Cyberglassed
cyberglassed
Added topic given an indicator handle, how do I get the non plotted region width at the begining?
Hello, I have a Bollinger Bands indicator on the chart. Also I have its handle. Then I would like to get the number of candles before it starts to be plotted? Please, check the image below: I want to get the number of candles betwen the two yellow
cyberglassed
Added topic Does MT5 do a time change also when the political administration do it?
Hello, I would like to know if MT5 do a time change when political administrations do it, and in that case which is the moment when MT5 do such times changes? As all we know, countries change the time to take advantage of the summer light, see link
cyberglassed
Added topic problem while using ReadFile WinAPI function...
Hello folks, I have spent all the afternoon trying to get the following code works. After tried it with no success, I built a completely different code with Windows APIs to use the correct names from Kernel32 library but also didn't work
cyberglassed
Added topic how to be sure that a custom indicator have been already loaded into the chart?
Hello, I would like to know how to be sure that a custom indicator have been already loaded into the chart? I have an script, then inside it I create an instance of a custom indicator (slower than built-in indicators) and add it to the chart. After
cyberglassed
Added topic how to use indicators handle as input parameters inside another indicator?
Hello folks, I have an indicator {indicator_diff} where I need to make use of the handles of other two indicators {indicator_1, indicator_2}. What my indicator does is output the difference between the other two indicators, given by the handles
cyberglassed
Added topic is it possible to dynamically evaluate code in mql5?
Hello, I would like to know if is it possible to dynamically evaluate code in mql5? I mean in the same way you can do with Javascript and PHP with the "eval(...)" function? Reference: http://www.w3schools.com/jsref/jsref_eval.asp Regards
cyberglassed
Added topic is there some "StringToEnum" function or an alternative?
Hello, if I do: string a = EnumToString(MODE_SMMA); I get: a = " MODE_SMMA " Now, I would like some function that does just the opposite, I mean something like: int b = StringTo Enum ("MODE_SMMA"); b = 2 where 2 is the int value associated to the
cyberglassed
Added topic How to force the current indicator to exit?
Hello folks, I would like to put a conditional forced exit inside the OnInit() method of an indicator, something like this: int OnInit () {    if (<exit_cond>) {       DeInit();    } } How can I
cyberglassed
Added topic How do I calculate the profit per pip given a symbol info and a volume?
Hello folks, I would like to know how to calculate the profit per pip given a symbol info and a volume? for example, I have the following symbol information for the symbol: #NKDU4 and let's suppose I buy a volume of: 0.25. Then ¿how do I calculate
cyberglassed
Added topic Looking for an Indicator who pay attention to important local maximum and important local minimums...
Hello folks, do you know some indicator which output a line as the blue one on the following chart? I drawed the blue line by hand. the red line is a 20 period simple moving average and the yellow line is a 4 period simple moving average but those
cyberglassed
Added topic How to get a list of parameters type given an indicator type?
Hello, I would like to get a list of parameters type given an indicator type . for example, some function like: bool get_indicator_params_type( ENUM_INDICATOR enum_ind, ENUM_DATATYPE &datatype[]) {     ... } /* then I can do
cyberglassed
Added topic How to get a list of parameters of a built-in indicator...
Hello, I would like to know if it is possible to get a list of parameters of a built-in indicator already attached on a chart. In other words, imagine there is a built-in indicator already attached on a chart, then I want to create an script that
cyberglassed
Added topic string EA input parameter is truncated. Why?, some workaround?
Hello folks, I have an EA with the following source code. I pass some configuration through the inputs parameters like bellow: input string settings = "A 0123456789. B 0123456789. C 0123456789. D 0123456789. E 0123456789. F 0123456789. G 0123456789
cyberglassed
Added topic in backtesting, how to determine the uniform behaviour of the balance curve based on the ST report...
Hello folk, I goold like to know, which of the following Strategy Tester report parameters infrom me about the uniform behaviour of the balance curve after bactesting
cyberglassed
Added topic how to close the chart window after the strategy tester finish...
Hello, I would like to know how to close the chart window after the strategy tester finish? I run the Strategy Tester automatically after MT5 starts as described here: https://www.metatrader5.com/en/terminal/help/start_advanced/start but the problem
123