THX for your shared codes..
But when I tried the application on test and did not see any difference following ones
they show same equal values for the following ones get from iStochasticGet, since they have ZERO within the paranthesis
sig_buy = iStochasticGet(SIGNAL_LINE,0);
sig_sell = iStochasticGet(SIGNAL_LINE,0);
for example if sig_buy is equal to 69 and sig_sell is equal to 69 ALSO ?!?!?!
and same equal values for the following ones get from iRSIGet, since they have ZERO within the paranthesis
sig_high = iRSIGet(0);
sig_low = iRSIGet(0);
What should I do to cause to show them different values ?
THX for your shared codes..
But when I tried the application on test and did not see any difference following ones
they show same equal values for the following ones get from iStochasticGet , since they have ZERO within the paranthesis
sig_buy = iStochasticGet(SIGNAL_LINE,0);
sig_sell = iStochasticGet(SIGNAL_LINE,0);
for example if sig_buy is equal to 69 and s ig_sell is equal to 69 ALSO ?!?!?!
and same equal values for the following ones get from iRSIGet, since they have ZERO within the paranthesis
sig_high = iRSIGet(0);
sig_low = iRSIGet(0);
What should I do to cause to show them different values ?
In the function ' iStochasticGet' and in the function ' iRSIGet', the value '0' is the number of the bar. To determine the signal, the value of indicators on the bar '0' is interrogated.
In the function ' iStochasticGet' and in the function ' iRSIGet', the value '0' is the number of the bar. To determine the signal, the value of indicators on the bar '0' is interrogated.
with the following sentences seen at attached print screen from your code when they gave the same values how can we compare to decide to get buy or sell signal ?
I tried to revised the application file ( attached ) according to other related codes ; since I am not experienced in mql 5 coding, please correct me , thanks in advance .
with the following sentences seen at attached print screen from your code when they gave the same values how can we compare to decide to get buy or sell signal ?
I tried to revised the application file ( attached ) according to other related codes ; since I am not experienced in mql 5 coding, please correct me , thanks in advance .
I have got "stochastic signal / main" related codes from : https://www.mql5.com/en/code/17562
I have got " rsi " related codes from : https://www.mql5.com/en/forum/338954#comment_16987097

- www.mql5.com
I have got "stochastic signal / main" related codes from : https://www.mql5.com/en/code/17562
I have got " rsi " related codes from : https://www.mql5.com/en/forum/338954#comment_16987097
with the following sentences seen at attached print screen from your code when they gave the same values how can we compare to decide to get buy or sell signal ?
I tried to revised the application file ( attached ) according to other related codes ; since I am not experienced in mql 5 coding, please correct me , thanks in advance .
Read the code of the adviser. Everything is clear in the code. There are no "equal values."

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
The Puncher:
Author: Vladimir Karputov