Please help me with adding buffers to the indicator.

 

Hi,

Please help me.

Can anyone help me add Buffers to the indicator?

I adjusted the indicator so that it doesn't redraw, but it memes Buffers, and I would need Bufers.

Please, isn't there someone who can help me, add them to the indicator?

Indicator have potential.

Thanks

Files:
 

Help you with what? You haven't stated a problem, you stated a want. Show us your attempt (using the CODE button) and state the nature of your problem.
          No free help 2017.04.21

Or pay someone. Top of every page is the link Freelance.
          Hiring to write script - General - MQL5 programming forum 2018.05.12

We're not going to code it for you (although it could happen if you are lucky or the problem is interesting).
          No free help 2017.04.21

MT4: Learn to code it.
MT5: Begin learning to code it.

If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into your code.

 

Please help. EA finds an object for me, but it opens both Long and Short, and I only need it to open the correct signal.

I would also need the store to open up to my new OPEN candle if the searched signal remains.

So   " iClose(.......,current+1) "


Here is a piece of code ..



//---

 string txt;
 bool bbb;
 int tiket=0,nn=0,ratio,buys=0,sells=0;
 double zisk=0,cena,stop,prof,slpips;
 datetime now=TimeCurrent();
 double sprd=MarketInfo(Symbol(),MODE_SPREAD); 
 double minlot=SymbolInfoDouble(Symbol(),SYMBOL_VOLUME_MIN);
 double lotstep=SymbolInfoDouble(Symbol(),SYMBOL_VOLUME_STEP);
 
 
 
 
//datetime ObjSignal_Long_Time = (datetime)ObjectGetInteger(0,"IT__BUY_",OBJPROP_TIME);
//datetime ObjSignal_Short_Time = (datetime)ObjectGetInteger(0,"IT__SELL_",OBJPROP_TIME);
//datetime ObjSignal_Close_Time = (datetime)ObjectGetInteger(0,"IT__CLOSE_",OBJPROP_TIME);

double ObjSignal_Long =(ObjectFind(0,"IT__BUY_"+Time[1]));
double ObjSignal_Short=(ObjectFind(0,"IT__SELL_"+Time[1]));
double ObjSignal_Close_L=(ObjectFind(0,"IT__CLOSE_BUY_"+Time[1]));
double ObjSignal_Close_S=(ObjectFind(0,"IT__CLOSE_SELL_"+Time[1]));

//  if (ObjSignal_Close<Tshift) 

datetime    Tshift  = Time[1];

double CLOSE_0=iClose(Symbol(),PERIOD_CURRENT,0);
double OPEN_0=iOpen(Symbol(),PERIOD_CURRENT,0);
double HIGH_1=iHigh(NULL,PERIOD_CURRENT,1);
double LOW_1=iLow(NULL,PERIOD_CURRENT,1);




 if (OrdersTotal()>0) for(nn=OrdersTotal()-1;nn>=0;nn--)


 
Jiri Kasparek: Here is a piece of code ..

Which is irrelevant to your original post (no buffers) or #2 (no OrderSend).

Reason: