[ARCHIVE!] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Can't go anywhere without you - 4. - page 369

 
Hi. Question: How do I set the MA moving average not on the main chart, but in the indicator window? Here are some examples in this article-http://sk-fx.at.ua/index/0-12.Спасибо.
 
people tell me how to make a caption above the horizontal line of MT4.
 
Myth63:
people tell me how to make a caption above the horizontal line of MT4.

Write with objects
 
Add a description with ObjectSetText() and enable the "show object descriptions" option in the graph properties.
 
Can you tell me how to set up a parity check on a number?
 
sss2019:
Can you tell me how to set up a parity check on a number?

Divide by 2 and see the remainder. See Math functions.
 
sss2019:
Can you tell me how to set up a parity check on a number?
if(Число%2==0)
then the number is even
 
sss2019:
Can you tell me how to set up a parity check on a number?
int x = ...
...
if ((x % 2) == 0) {
// значение x четно
} else {
// значение x нечетно
}
 
Thank you
 
Can you tell me the difference between writing an EA for Demo and for Real, apart from using the status check functions?