[ARCHIVE] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 3. - page 341

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
Hi all, is there any indicator or..... that would make a grid in MT4 not randomly but after 100, 500 pips???
Help, people of goodwill.
For multicurrency iCustom indicator of 5 currencies
(here are pairs "EURGBP", "EURUSD", "EURCHF", "EURJPY", "GBPUSD", "GBPCHF", "GBPJPY", "USDCHF", "USDJPY", "CHFJPY")
Do I need to force-feed the history?
I have a suspicion that the indicator works, but the history for some pairs is not updated when the indicator is running.
Do you have something to suggest?
Preferably a piece of code:)
Below there is an Expert Advisor which downloads and periodically updates the history for a required instrument (e.g. EURCAD) into the catalogue.
What and where should I fix in the code, so that data would be exported by creating csv. file in this folder C:\Program Files\Alpari MT4\experts\files\Export_History without creating subdirectories inside?
right now it's dumping C:\Program Files\Alpari MT4\experts\files\Export_History\EURCAD
int tiket[]
int funk1(){
Size=ArrayResize(tiket,n);
for (i=0;i<=Size;i++) {
tiket[i]=OrderSend();
Print(tiket[i]) ;}
}
int funk2(){
for (i=0;i<=Size;i++) {
Print(tiket[i]);}
int init() {}
int start() {
funk1();
funk2();}
Print in the first function produces tikets, everything is ok here, but it produces zeros in the second function - why? Where may the fault be?
Can you figure it out?
Try the analogy...
Below there is an Expert Advisor which downloads and periodically updates the history for a required instrument (e.g. EURCAD) into the catalogue.
What and where should I fix in the code, so that data would be exported by creating csv. file in this folder C:\Program Files\Alpari MT4\experts\files\Export_History without creating subdirectories inside?
Now it goes like this C:Program Files\Alpari MT4\experts\files\Export_History\EURCAD
Thank you.
But it has a rather complicated design and only one shaft pair at a time, I would like it to be simpler and in many pairs at the same time.
Thank you.
But it has a rather complicated design and only one shaft pair at a time, I would like it to be simpler and in many pairs at the same time.
It's not my thing, but you can hang it on different instruments at the same time, so how can this little misunderstanding be corrected?
It's not mine. but you can hang on different instruments at the same time. so how do you fix this little misunderstanding?
This is how Mnu does it. I put all necessary pairs with necessary TF into one profile and update it that way. I would like to do it programmatically, but I do not have enough skills, as Chapay said.
Can you figure it out?
Try an analogy...
Thanks, I'll try it that way.
Kind people, and more importantly, smart ones, explain to a self-taught person what kind of error I get when compiling code?
\end_of_program' - ending bracket '}' expected
Hi, I'm new to mql programming.
When I click on this script in the terminal, it shows me the given quote. I want it to show the closing price at the end of each candlestick.
I think I need to add a loop in the code. HELP PLA.