Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 697

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
not only can you do it, you have to.
Dear programmers, I have received this warning, what changes should I enter in the EA settings or what does it mean? (I have erased the broker's name for obvious reasons):
Dear Client!
We would like to inform you that, due to the planned technological infrastructure and modernization of EQUIPMENT, connections to data centres .............-Live 3 from the IP-address............... will be terminated on Saturday 30 August 2014 your trading terminals will be automatically connected to one of the two data centres at the following addresses:
dc1.mt4..........com:443 (USA)
dc2.mt4..........com:443 (Germany).
Please make appropriate changes in the trading advisors settings, if necessary.
Hello!
How do I calculate the 20-bar maximum and minimum values for each bar and impose them on the line?
I can only use it for the 0th bar.
Hello!
How do I calculate the 20-bar maximum and minimum values for each bar and impose them on the line?
I can only use it for the 0-th bar.
I would like to know why you don't like them. :
I haven't looked any further...
Here's this: "...for each bar the value of the 20-bar high and low..." - is not clear at all.
Hello!
How do I calculate the 20-bar maximum and minimum values for each bar and impose them on the line?
I can only use it for the 0th bar.
Everything is much simpler. I tried doing different channel indicators once too. Here is the code
It's a lot simpler than that. I tried making various channel indicators once too. Here's the code
Thanks to everyone who responded. I will learn more.
People, tell me how to display the period setting for the indicator. I tried it this way, it doesn't work:
extern string Per= H1;
double prodaem1=iCustom(Symbol(),PERIOD_ Per, "super-signals-channel",2,500,2,sdvig);
People, tell me how to display the period setting for the indicator. I tried it this way, it doesn't work:
extern string Per= H1;
double prodaem1=iCustom(Symbol(),PERIOD_ Per, "super-signals-channel",2,500,2,sdvig);
You can do this: extern int Per= 60; //string H1;
double prodaem1=iCustom(Symbol(),Per, "super-signals-channel",2,500,2,sdvig); //PERIOD_
In fact, see Documentation!
You can do it this way: extern string Per= 60; //H1;
double prodaem1=iCustom(Symbol(),Per, "super-signals-channel",2,500,2,sdvig); //PERIOD_
In fact, see Documentation!
You cannot do it this way either.
Period is of the int type.