NEED A PROGRAMMER - page 5

 
vvvvova писал(а) >>

that's not what I need,

and all I need is

I just need an EA which will at the same time, place two opposite orders with stops at the same time, nothing more.

I'm sorry, I can't get through.

>> It's a miracle to know the time and the key.

 
Korey писал(а) >>

It's like a miracle to know the time and have a key.

you misunderstand me.

I don't have any time,

when you click on the button "CONNECTORS" in MetaTrader 4 you get two opposite orders from the stops, without any delay.

 
vvvvova >> :

you misunderstand me.

no time at all,

when you press the CONSUMER button in MetaTrader 4, two opposite orders out of the stops, no delay.

=)))))) It's called a script, not an EA. There are a lot of similar ones lying in CodeBase

 
Fduch писал(а) >>

=)))))) It's called a script, not an EA. There's a bunch of them in CodeBase.

I don't know what it's called correctly, expert or script, I don't care if it does what I need.

If this is a script, how to use it, where to place it and how to enable it?

Where is it, CodeBase?

 
vvvvova >> :

Where is it, CodeBase?

Code Base
 
vvvvova >> :

If it is a script, how do I use it, where do I put it and how do I enable it?

Where is it, CodeBase?

I advise you to read RHFM *Read Help File Manual* and not to bother with such really nerdy *NewBy-newcomer* questions =)

It will be much faster, tested by my own experience while studying WinAPI

 
//+------------------------------------------------------------------+
//|                                                       MyLock.mq4 |
//|                                                           MaStak |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright "MaStak"
#property link      ""
#property show_inputs // Подтверждение входных переменных

extern double Lot=0.1; // Размер лота
extern int    SL=50  ; // Стоплосс в пунктах
extern int    slpge=1; // Допуск исполнения в пунктах
//+------------------------------------------------------------------+
//| script program start function                                    |
//+------------------------------------------------------------------+
int start(){
//----
OrderSend(Symbol(), OP_BUY, Lot, Ask, slpge,Ask- SL*Point, 0, "КУПИЛ", 0, 0, Blue);
Sleep(500);
OrderSend(Symbol(), OP_SELL, Lot, Bid, slpge,Bid+ SL*Point, 0, "ПРОДАЛ", 0, 0, Red);  
//----
   return(0);}
//+------------------------------------------------------------------+
 
MaStak писал(а)

Thank you for wanting to help.

One thing is bad, I don't know how to call it, it is waiting for the price to start moving, so it is impossible for it not to be delayed.

 
Fduch писал(а) >>

I suggest reading RHFM *Read Help File Manual* instead of stressing with such really nerdy *NewBy-newcomer* questions =)

It will be much faster, tested by my own experience while studying WinAPI.

Unfortunately I don't have time to read and study, I'm not going to be a programmer.

By the way.......

Everybody needs help sometime!

 
vvvvova писал(а) >>

Thank you for wanting to help.

I do not know what to call it, it waits for the price to start moving, so it is impossible for it not to delay.

vvvvova is deaf to people's needs.