18081961
18081961
Friends

Add friends via their profile or user search and you will be able to see if they are online

18081961
Added topic Open alternate orders
Hi all, Have an issue with an Ea that I'm writing. I'm looking to open orders observing these conditions; First open by mean of an indicator is a buy (could be a sell of course) and then a buy order is open, if price bounce down to a level under the
18081961
Added topic Open orders with no indicators
Hi all, i'm looking to open orders based in the difference of the present Bid to the Bid in the past. What I mean is; if Bid now is x pips above than the Bid before then open an Buy order if Bid now is x pips under the Bid before then open an Sell
18081961
Added topic multiple orders on start
Hi all,  I have an ea on four pairs. At first, the ea is working well, but if I close the platform  and open it again in one of the pairs multiple orders start to open. Could you show me what is wrong? Thank you in advance Luis 
18081961
Added topic open orders on start
Hi all,  I come across  with an issue; When I put the ea for the first time an order is opened, then when that order closes the next one opens normally, meaning that the ea waits for price goes up or down the OpenLevel What I expect the ea
18081961
Added topic Close last order
 Hi all,  I pretend to close the last order maintaining the first order in place.   The ea is working fine to the moment that an opposite order is in place, but when I try to close the last order regarding it bounces back and
18081961
Added topic counter need to reset
Hi all, Could you help me here,   Using the code I want to put to zero the counter if the condition fails. Right now if;                if (BounceCount >= Bounce && Bid > BuyTrigger) is true
18081961
Added topic Open an order
Hi to all,   Could you show me how to open an order in this situation; After Bid passes up a line (could be a line from an indicator) and when Bid backs down from that line an order should be open.   Thank you in advance Luis 
18081961
Registered at MQL5.community
18081961
Added topic Ea should open after bid move
Hi deVries and WHRoeder, Thank you for your prompt response. Follow is last post updated. I have an issue with the open of an order, I want open an order every time the Bid moves by a certain value. So If I make use of ; Global Variables double
18081961
Added topic slippage
Hi all, I there a way to get the slippage value from the Broker? Thank you in advance for any clarification. Luis Neves
18081961
Added topic Counting closed orders
Hi all, I need to get the number of orders that have been closed. Could you show me how could one get that from order history ? thank you in advance for any support provided Luis
18081961
Added topic Connection status
Hi all, One question, on mt4 on bottom right where is the symbol of connection satus some times this symbol is half red and half green other times is all green. Could you tell me what these colour differences are all about ? Thank you in advance Luis
18081961
Added topic Message on Journal Tab
Hi all, I'm running an ea on a Demo account and receive the follow message on Journal Tab; Signal - not found update signal - 3374 in base do you know what is the meaning of it ? Thank you in advance Luis
18081961
Added topic Timer not working
Hi all, I would like to get a timer to close open trades on Saturday and start on Sunday. For that I try the to use the follow code, but with it no orders are opening. Could you tell me what am I doing wrong ? extern int
18081961
Added topic Count in price direction
Hi all,  I need to trail price once it passes a MinProfit and then when it bounces back and hit Trail value we have a close. I've already gained a lot of support from WHRoeder,but still to do not understand how to deal with this issue and am
18081961
Added topic Issue with TotalOrderProfit
Hi all, Using the following code am looking to close orders once the TotalOrderProfit gets equal or less than TrailedPrice. I have put a print to check why is that not working and what I see is that the price do not come down. Could you show  me
18081961
Added topic Count orders
Hi all, Sorry for the silly question; I'm looking for increase lots based on the number of open orders. For that am make use of the follow code, but seems to not work.  for (Total = 1 ; Total <= OrdersTotal (); Total++)   
18081961
Added topic Open order if price goes up or down
Hi all, I'm looking to open orders every time bid increase or decrease. Issue; If price starts to go in sell direction sell orders are opening, but if starts to bounce back no orders (buy) are opening.  Do I need to have a code to open opposite
18081961
Added topic Open on grid levels
Hi all, I'm looking to open buy and sell on grid levels above and under Bid respectively. I do not make use of pending orders . Is that possible to get from you any help here ? int start()   {      double pgrid = Bid*
18081961
Added topic Comment not working
Hi all, I'm looking to get in comment the value of TotalOrderProfit from the code following code, but it doesn't work.   string SettingsComment = "Profit Protected: " +TotalOrderProfit;    Comment (SettingsComment);   void