NEED A PROGRAMMER - page 3

 
Mathemat >> :

....

The most difficult thing here is extremum search - a typical fuzzy task. I'm afraid the library of extremum search you mentioned is not quite the point. Not even that at all. Identifying extrema of an extremely broken curve (including local ones, especially inside a channel) is not a trivial task at all.

....

For me a local extremum in FOREX-e is a bar with a maximum/minimum High/Low in a sample of n bars *usually three*. A second level extremum is an emaximum\minimum extremum on a sample of n local extrema. And so on and so forth up to any level of globalization required by the customer.

And, of course, another fuzzy task - identifying similar channels.

The channel is given by three points. We take two of them in pairs *one from the lower wall, the other from the upper wall* and compare them to the other two. If both are at a distance equal to n*spread vertically and m bars horizontally, where n,m are optimisable parameters. I.e. the similarity criterion is up to the customer =)

 
YuraZ >> :

If you get one less thing for 6 hours, then it makes sense! ( see end of post )

---

1)... implement it so that the customer is satisfied! to the fullest...


2) for a man must have rest and you will spend those hours on this project

It would probably be better for you to take a rest!

---

3) In the end you have to explain to the customer that you didn't have to sit in the evening with his task!

Three reasons why I do not write for a job if I am not personally interested in the development process =)

 
Integer >> :

Email us.

If you come to an agreement, please let me know how long it took. If you can, of course, there are too many slippery slippery slippery points.

 

Hi all

I need to write an EA that will put two opposite orders with stops at the same time,

I would like to know where it is available.

I would like to know where to find one.

 
vvvvova >> :

Hi all

I need to write an EA that will put two opposite orders with stops at the same time,

I would like to know where it is available.

I am grateful to you.

Hmm, you are also from the Ukraine? =)

//+------------------------------------------------------------------+
//|                                                for_Voiodymyr.mq4 |
//|                                 Copyright © 2009, Gryb Alexander |
//|                        alexandergrib@rambler.ru ICQ: 478-923-832 |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2009, Gryb Alexander"
#property link      "alexandergrib@rambler.ru ICQ: 478-923-832"

extern string com_0 = "Тейк профит, стоп лосс, трейлинг";
extern int тейк_профит = 30;
extern int стоп_лосс = 50;
extern string com1 = "Лот, технические переменные, отключаемые модули";
extern double лот = 0.1;
extern int проскальзывание = 3;
extern bool торговля_по_цене_открытия = false;
extern bool использовать_стопы = true;

datetime prev_time;


int start()
{
   if( торговля_по_цене_открытия==true&& prev_time==Time[0]) return(0); prev_time=Time[0];
   if(OrdersTotal()==0) Открытие_позиций();
   return(0);
}

void Открытие_позиций()
{
   if( использовать_стопы==true)
   {
         OrderSend(Symbol(),OP_BUY, лот,Ask, проскальзывание,Ask- стоп_лосс*Point,Ask+ тейк_профит*Point);
         OrderSend(Symbol(),OP_SELL, лот,Bid, проскальзывание,Bid+ стоп_лосс*Point,Bid- тейк_профит*Point);
   }
   else
   {
         OrderSend(Symbol(),OP_BUY, лот,Ask, проскальзывание,0,0);
         OrderSend(Symbol(),OP_SELL, лот,Bid, проскальзывание,0,0);
   }
}

With the optimizer even this one can make a profit:


Files:
 
Fduch писал(а) >>

Hm, are you also from Ukraine? =)

You can get a profit with the optimizer even with this one:

Fduch thank you very much, (about me, I am a Ukrainian living in the US).

I want to place orders and stops only.

Thanks!!!!!!!!!!!!

It would be better to have possibility to disable take_profit, and automatically move the stop in the direction of the trend.

Sorry for the insolent request.

Thank you to those who will give me a hand!!!!!!!!!!!!

 
Topic up!
 
LSB >>:
Topic up!

Huh, no deal :) .

 
TheXpert писал(а) >>

Gee, no agreement :) .

Why on the contrary, I talk to several programmers at once, trying to figure out which of them is most capable of understanding and implementing my ideas.

 
LSB >> :

Why, on the contrary, I talk to several programmers at once, trying to understand which of them is most capable of understanding and implementing my ideas.

Don't waste your money and programmers' time.

There are literally five people who can do it, and it will cost you a lot (a couple thousand??).

In addition, I almost guarantee that no one will implement the ToR exactly, because it has more slippery points than strings.

Reason: