[ARCHIVE] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 3. - page 376
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
Thanks because I'm already exhausted :)))))
The indicator does not show past values. Help and correct.
Programmers. Help me write an indicator to send me email if candle's body is over 50runts. I got help yesterday, but I tried it and it did not send the signal right( I need it to send a signal once the candlestick is > 50 pips and once it closes, only 1 time and that's it...
static int prevtime = 0;
int start() {
if (Time[0] == prevtime) {
return(0);
}
if ((High[0] - Low[0]) > (50.0 * Point)) {
SendMail("???? ?????? ????? ??????", "????? ?????? 50 ??????");
prevtime = Time[0];
}
return(0);
}
please help me with this error
I am writing an Expert Advisor to work on Range Bars (implemented as a looped script). However, it makes a trade and is immediately removed from the chart.
The problem is obviously in return(0), but how do I get around it? I am attaching the scripts below. They differ only in the algorithm of looping.
http://dl.dropbox.com/u/47506458/RB4 sctipt2 .mq4
http://dl.dropbox.com/u/47506458/RB4 script3.mq4
/* edited by the moderator, please insert links correctly */
I am writing an Expert Advisor to work on Range Bars (implemented as a looped script). However, it makes a trade and is immediately removed from the chart.
The problem is obviously in return(0), but how do I get around it? I am attaching the scripts below. They differ only in the algorithm of looping.
http://dl.dropbox.com/u/47506458/RB4 sctipt2 .mq4
http://dl.dropbox.com/u/47506458/RB4 script3.mq4
Hello. I am new to MT4. I have a question: Can I place several orders at the same time using an EA or a script? For instance, I want to place 10 orders with the same parameters.
Hello. I am new to MT4. I have a question: Can I place several orders at the same time using an EA or a script? Let's say, you may place 10 orders with the same parameters.
Only in the tester.
Yes, search for: Grid, Grider,