I will write an advisor free of charge - page 131

 
Renat Akhtyamov:

no need to get used to it

write an open sell on every tick and hand over a simple advisor

that's what ....
 
kisson:
What's the point ....

To the fact that it is a really simple EA. And if you put a random selection, Buy or Sell to open, then it's not really simple anymore.

 
Alexey Viktorov:

To the fact that it's a really simple EA. And if you put a random selection, Buy or Sell to open, then it's not really simple anymore.

Any simple thing is done with our own hands.

If you cannot do it with your own hands, then it is not simple.

The bottom line is that an advisor is not "easy".
 
Vitaly Muzichenko:

Any simple thing is made with our own hands.

If you can't do it yourself, it's not easy.

As a result, you need a "not simple" advisor

No... I disagree. There are people who have no logic whatsoever. They can only do what they were taught. For example, they were shown how to write an opening of Buy... and they cannot do it on their own, they cannot write an opening of a Sell position. And the most striking example, it is economists in a stunning majority.

 
I understand you need an order for an advisor...simple is cheaper.... not simple is more expensive...
 
kisson:
hello all.... i'm looking for a simple advisor that opens trades on the buffer arrows of an indy...BUT... works in one direction (where the indicator sent) ... every # pips opens deals ... same way ... tp no stop loss .... when stop triggered , advisor closes ALL trades (if any) .... and again waits for signal......if anyone has it or where to look for it--poke around... a little humorously...

Hi! The guys don't want anything, they're just messing around a bit. People come to the forum to socialise and have fun, not to be burdened by other people's problems. Usually, if they ask for help with something simple, the guys will be happy to give advice. Or if the idea is interesting and easy to describe. Now imagine that you know nothing about your wish and read your text. And what was required? Which arrows, from which indicator, in which direction, where sent, through which points, to the same place, ....??? Is this a logical technical task? No one would take the time to go into it. Would you waste your own time and drag someone in with this approach?

And it's not about payment, everything in this thread is free. And if you want to get paid, go to freelancing, there's a section on the top.


Well, the most important detail - the idea must be interesting! No one will want to do it for free and uninteresting, including you.

 
Aleksei Stepanenko:

Hi! The guys don't want anything, they're just messing around a bit. People come to the forum to socialise and have fun, not to be burdened by other people's problems. Usually, if they ask for help with something simple, the guys will be happy to give advice. Or if the idea is interesting and easy to describe. Now imagine that you know nothing about your wish and read your text. And what was required? Which arrows, from which indicator, in which direction, where sent, through which points, to the same place, ....??? Is this a logical technical task? No one would take the time to go into it. Would you waste your own time and drag someone in with this approach?

And it's not about payment, everything in this thread is free. And if you want to get paid, go to freelancing, there's a section on the top.


Well, the most important detail - the idea must be interesting! No one will want to do it for free and uninteresting, including you.

Hi ... first of all I have not written anything about my problems ... secondly, even a schoolboy would understand what I wrote ... I have not offered any ideas ... I have not offered any terms of reference ... if necessary, I will post it elsewhere..... I just asked for an adviser ... and do not send me to a freelance ... and the last thing---- if you want to have fun you go to another branch...... and in general if the man has a good idea, he certainly will not go here
 

It is unlikely that you will find something ready-made in one piece. Try to figure it out for yourself then. I can help you get started. If you want to retrieve data from the indicator, you can do this via iCustom. Type in your indicator name along with the folders if the indicator is deeper than the Indicators folder. Separators are two backslashes. If there are no nested folders, just write the name without slashes. If there are indicator input parameters, you must specify them separated by commas, then the buffer number and then 0. Run it and read the result. Does it coincide with the indicator values? If yes, then half the job is done.

#property version   "1.00"
#property strict

sinput int Magic=10001;       //Номер советника

//название вашего индикатора вместе с папками
string IndicatorName="папка\\имя_индикатора";

//символ и таймфрейм текущего графика
string symbol;
ENUM_TIMEFRAMES frame;
double signal;

int OnInit()
   {
   symbol=Symbol();
   frame=(ENUM_TIMEFRAMES)Period();
   return(INIT_SUCCEEDED);
   }

void OnTick()
   {
   //здесь после IndicatorName вместо точек нужно вставить параметры индикатора, если они есть
   //затем номер буфера
   signal=iCustom(symbol,frame,IndicatorName,...параметры через запятую..., ...номер буфера... ,0);
   //теперь запустите в тестере и проверте напечатанные данные, совпадают ли с индикатором
   Comment(DoubleToString(signal,5));
   }

And what program are you working in? I wrote for 4, not so much in 5.

 
thank you very much..... guys from another site easily and gratuitously sent me a ready-made advisor, true it opens on the grid but everything else matches..... that's good they say we are not sorry... and by the way without any jokes and jokes.... that means they are serious about it... and thank you very much and good luck
 
kisson:
And no jokes, by the way.

There is such a thing, we're a bit of a nerd....

Good luck!

Reason: