[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 514

 
if (New_Day(Day_of_Week)==1)
 
You need to get the value of the minutes of the current time, i.e. if it is 22:34, you are interested in "34".
It could be
int    TimeCurrent_variable = TimeCurrent();
string time_current         = TimeToStr(TimeCurrent_variable,TIME_MINUTES);

After that do some string manipulation to retrieve minutes
(and it seems to be impossible to do without cycle-for, which will be an additional load on the CPU). Is this correct or is there something simpler?
Thanks!
 
Is it possible to find out the time after which this brokerage company stops delivering quotes using MQL?
It means that the trading days may be shortened.
If you do not know the time, you may be surprised by their abbreviated trading days.
 
Question:
After 10 o'clock 2 pending orders are placed once a day, after which they should not be placed again, once one order has triggered, the other is deleted. How to do it, mm?
 
vlandex >>:
Вопрос:
После 10 часов выставляется 2 отложенных ордера один раз в день, после чего они не должны опять выставиться, после того как один сработал ордер, второй удаляется. Как сделать ето, мм?

need to make 20 quid somewhere and order

 
vasya_vasya >>:

нужно где то заработать 20 баксов и заказать

Simplify, how do we open 2 pending orders and shut down the EA?

 
Oper >>:
Подскажите,пожалуйста,возможно ли средствами MQL узнать
время,после которого данный ДЦ прекращает поставки котировок?
Имеется в виду,что у них бывают сокращённые торговые дни.
Встроенный почтовый ящик в терминале-не в счёт.


An abbreviated day is usually Friday. It is possible to recognise it by means of language.
if(DayOfWeek()>=5){//В пятницу
.....
}
else{// в прочие дни
.....
}
You just need to know what time your DC is open on Friday. You can see this on the Friday chart.
Then we query for the current time TimeCurrent() and compare it with the Friday trading time
 
vlandex >>:

Упростим, как открыть 2 отложенных ордера и выключить советник?


Count the orders. If there are two pending, then return(0)
This code block should be placed at the start of the Expert Advisor above all other code blocks. In this case, the command return(0) will not let the rest of the code be executed.
Using the language, we cannot disable the EA (disconnect it from the chart).
 
chief2000 >>:
Необходимо получить значение минут текущего времени, т.е. если сейчас 22:34 то интересуют "34".
Можно

После этого провести какие-нибудь манипуляции со стрингом чтобы извлечь минуты
(и кажется без цикла-for не обойтись, что станет дополнительной нагрузкой на проц). Верно ли это или есть что-то попроще?
Спасибо!





Go to the meta-editor's help. Read.
int Minute( ) 
Возвращает текущую минуту (0,1,2,..59) последнего известного серверного времени на момент старта программы (в процессе выполнения программы это значение не меняется).
Замечание: при тестировании последнее известное время сервера моделируется.  
 
kraizislot >>:

Как из антивира касперский вернуть себе метатрэйдер, мой антивир не отдаёт. Если кто сталкивался помогите ПЛИЗ.
вот такая :( 12 дней как касперский 2010 блокирует открытие или распаковку любого терминала любого ДЦ, их касперский конечно советовал мол то-то сделайте ... а ничего неизменяеться. В архиве (если кто сведущь может заглянуть) висит отчет антивира за месяц (сколько влезло в формат файла).


I use the German Avira. It's free (although there are paid versions). Here is a link to the Russian-language installer of this antivirus http://soft.soft-host.ru/bezop/28-antivir-rus.html - try it - it does not slow down the computer and is fine with the terminal.