Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes - page 1520
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I'm having trouble with this, I understand the price1 anchor point, but I can't figure out how to make the condition. My variant doesn't work.
This section
should be put in OnTimer()
does anyone know if individual compiler warnings can be disabled ?
or else
"declaration of 'XXxx' hides global variable"
bother me...
does anyone know if individual compiler warnings can be disabled ?
or else
"declaration of 'XXxx' hides global variable"
are annoying...
Can't
This section
should be put in OnTimer()
Thank you very much for your help. I think I understood how this condition works. Unfortunately, I have very little information on handling the OnTimer() function, but I found one tip and the condition works. But will it not waste all memory if the function works in milliseconds?
This is what I got:
Thank you very much for your help. I think I understand how this condition works. Unfortunately, there is very little information on how to work with the OnTimer() function, but I found one hint and the condition works. But will this function not overload memory if it is triggered in milliseconds?
Here's what I got:
It won't... and it's better to do this.
will not score... and it's better to do so.
Thank you very much!
will not score... and it's better to do so
And it's better to do it this way:
Or better still:
Hi all. i found an article and decided to re-do it in my own way. but since i have my hands in the wrong place, i would like your advice on what i did wrong.
Here's the article I'm referring to -http://mql.su/2017/11/lesson11-first-indicator/
I wanted to make my own indicator based on rsi readings.
I'm not very experienced in this field but it seems I'm doing something wrong )))))))))
I do not need to do it for me, just tell me where and what to add and replace!
Hi all. i found an article and decided to re-do it for my own use. but since i have my hands in the wrong place, i would like your advice on what i did wrong.
Here's the article I'm referring to -http://mql.su/2017/11/lesson11-first-indicator/
I wanted to make my own indicator based on rsi readings.
I'm not very experienced in this field but it seems I'm doing something wrong )))))))))
You don't have to do it for me, just tell me where and what to add and replace!
if(per >= verx && Close[1]<Open[1]) return(BUY); if(per <= verx && Close[1]> Open[1]) return(SELL);
You are comparing the wrong rsi instead of "per".