[Archive!] Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Couldn't go anywhere without you - 2. - page 269

 
"After the U and D values are smoothed экспоненциальной скользящей средней with a period of N."

https://ru.wikipedia.org/wiki/%D0%98%D0%BD%D0%B4%D0%B5%D0%BA%D1%81_%D0%BE%D1%82%D0%BD%D0%BE%D1%81%D0%B8%D1%82%D0%B5%D0%BB%D1%8C%D0%BD%D0%BE%D0%B9_%D1%81%D0%B8%D0%BB%D1%8B_RSI


As for the stochastic, I think the slow stochastic is the average of the fast stochastic.


In short, they cannot be smoothed because they are already smoothed.


I could be wrong, better wait for someone who really knows :).

 
zevs_77:

Good day to all !

Can someone help correct the indicator (see attachment) so that when working on M1 it does not hang the terminal.


It is at least unethical to post decompiled software on this forum.
 

Good afternoon! When I try to compile, the error '(' function definition unexpected pops up. And there was nothing yesterday. I've already killed myself. Can someone give me a hint? Thanks in advance.

 
One more question right away. How often should RefreshRates() be applied in the program code to make it optimal?
 
Help me with my post on page 268 please.
 
I want to use data from an external website in my EA, is this possible? If so, in which direction should I look for information?
 
PODLIY16:
Help with my post on page 268 please.
The code is incomplete, if "asked not to distribute" then let whoever asked meditate on it. :))
It is clear from the error message that the symbol in OrderSend is not correct. You have only five symbols. Before using OrderSend, print and comment all cells of the character array one by one, without the loop. You will see what you are sending.
In general, you should start with something simpler than the multicurrency. You will waste a lot of time for nothing. Everything has to be solved consistently.
 
demlin:

Good afternoon! When I try to compile, the error '(' function definition unexpected pops up. And there was nothing yesterday. I've already killed myself. Can someone give me a hint? Thanks in advance.

'(' function definition unexpected - this is the error the compiler makes when there is an error before a function (a curly bracket or semicolon is missing).

In addition, the user function must not be located inside the start() function.

 
demlin:
One more question right away. How often should RefreshRates() be applied in the program code to make it optimal?
https://docs.mql4.com/ru/windows/RefreshRates
 
Bone:
I want to use data from external site in my EA, is it possible? If so, in what direction should I look for information?

wininet.dll or winhttp.dll

there are examples in the codebase

Reason: