[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 492
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
Help me add, Horizintal shift
and vertical shift
If it also works..........cloud
Можно сделать горячий старт сразу в
init(){
while (true) {
//Вечный кайф
}
Thanks splxgf. I tried, but ... Well, I guess I'll have to leave this venture until better times. Or maybe someone else will show interest in this, in my opinion, useful refinement of many experts.
Thanks splxgf. I tried, but ... Well, I guess I'll have to leave this venture until better times. And maybe someone else will show interest in this, in my opinion, useful refinement of many experts.
see how it should be doneint start()
{
while(true)
{
Sleep(5000); // 5 seconds delay until next iteration
RefreshRates(); // Refresh data
// rest of the code. Conditions to open, close, etc.
}
}
ПОмогите добавить, Сдвиг по горозинтали
и вертикали
Если ещё и работать бутет..........клювоо
Для закрытия ордеров я пользуюсь советником JimsCloseOrders, который может закрывать любые ордера по выбору – или профитные, или убыточные, или все подряд, правда пришлось его немного подкорректировать - вот в этих двух строках кода
extern bool CloseOpenOrders = true;
extern bool CloseOrdersWithPlusProfit = false;
false и true надо поменять местами, иначе, если такую настройку выполнять при установке на график, почему-то начинает закрывать все ордера (видимо из-за последовательности выполнения команд программой, но не уверен, не спец).
У меня вопрос к профи.
Требуется, как можно быстрее запустить, например, советника, о котором шла речь выше, но все советники и скрипты начинают действовать с момента поступления первого тика на график. Если же выбранная для установки советника валютная пара оказалась не очень "активной" в этот момент, то потери могут быть значительными.
Существует ли возможность создания "общего" графика для всех валют, или воспользоваться поступающим тикам любой другой пары? Тики же в терминал поступают почти непрерывно. Где их можно перехватить?
It's simple in
int init() { трали вали.. start(); }
When initialising, immediately execute the functionSee also tick emulation but that's not it ...
start() is the main function. In Expert Advisors it is called after the next tick. For custom indicators it is called during recalculation after attaching the indicator to the chart, at opening of the client terminal (if the indicator is attached to the chart), as well as after the coming of the next tick. In scripts it is executed immediately after attaching to the chart and initialization. If there is no start() function in the module, this module (Expert Advisor, script or custom indicator) cannot be launched.
I took this script from the tutorial; I wanted to see how it worked; I compiled and saved it. When I run it, it fails, why?
It doesn't give me any errors, it just doesn't work...
I try to rewrite something out of heaps of Expert Advisors, but when I need to write something concrete, I feel dumb...(((
And now...
I would like to make the following line in Expert Advisor:
I have an algorithm of opening, I have profit, and I want it to close after a certain time, no matter what the result will be,
- this is how to add it now?????????
I want to be able to set this time in Expert Advisor. For example, I want the deal to close itself after two, three or four hours... Depending on news release time for example. I think you understand what I mean.
If someone knows, maybe such questions have already been asked on the forum, at least give me the link. Tried to read the textbook, one only nerves, written for advanced programmers, well, certainly not for the ladies.
And if someone is not difficult and it seems a trifle, then write the lines, I at least glue them, then maybe something will work.
A big female please.......
Господа. Всем добрый вечер. У меня прям совсем ничего не получается в освоении языка. (((((((
int start() { OrdersCloseByTime(STUPID);//STUPID это мажик номер Вашего советчика трали вали ...
Closing time positions, where would you put it so it doesn't get lost?!Взял этот скрипт из учебника, хотел посмотреть как он работает - скомпилировал, сохранил. Запускаю - безрезультатно, почему?
Ошибок не выдает, просто не работает...
Try it this way.