How to modify OP_BUYSTOP current price / position??? For me OrderModify is not working, don't know why... Maybe doing wrong And on each tick deleting and creating new ticket is not very smart and cool :D
[Deleted]
if (Bar(0) price >200){ OrderSend(Symbol(), OP_BUY, lotSize, Ask,3,stopLoss,magicNumber; lastTrade = Time[0]; return;} else if (Bar(0) price <200){ OrderSend(Symbol(), OP_SELL, lotSize, Bid,3,stopLoss,magicNumber; lastTrade = Time[0]; return; }Is this code totally illogical?...
for example these r my ea's orders. 1 order is long at 1.30000 2. order is long at 1.29700 3. order is short at 1. 2960. 4. order is short at 1.2940 5. order is long at 1.2920 now all five order not close yet. i want write a code that ; when 6. order will open, ea will check 5. orders open price...
[Deleted]
Hi Everyone, I have encountered a problem which just makes no sense to me. Basically I need to search through a long list of hundreds if not thousands of lines in an array. So I'm using a "While Loop". This is just an example: int k = 0; while(k<300) { Print(k); k++;...
Hi, Can you please tell me whether we can use MQL5's - Bars in the place of MQL4's IndicatorCounted() ? I am trying to port an indicator from MQL4 to MQL5. Thanks in advance. -Krishna
I was wonder if there is a way to up the lot size as the price goes up or down? For example if I buy USD/JPY .01 lot @ 99.10 and the price goes down 10 PIPS. I would then want to buy .02 lots @ 99.00 and so on if the price continues to drop. As the price drops the lot size increases. Is there an...
[Deleted]
Con el Metatrader se pueden solapar dos gráficos de dos valores diferentes? Dicese BBVA y Santander y dividir el uno por el otro? Que aparezca todo el la misma pantalla pero por separado: ----------------- GRAFICO BBVA ----------------- GRAFICO SAN ----------------- DIVISIÓN ENTRE AMBOS...
I will try to explain the meaning of the strategy. Upon a certain signal, the EA places a buy order with 0.01 lot, let's assume the price went down and moved a little bit away from the open position, then the EA puts 0.02 lot in the sell position to compensate for the first sell order when it
Does anybody knows how to deal with this? I get constantly these messagess after 12 h running MetaTrader without problems: 2008.11.25 22:05:50 HistoryBase: not enough memory ' EURUSD1 ' [57109 bars] ... 2008.11.25 22:06:01 Memory handler: cannot allocate 2524060 bytes of memory MetaTrader is running
[Deleted]
I have an EA in MT4 build 200 that uses MA calculations extensively, but when Irun it on a chart, I keep on getting this error: 2006.11.29 13:28:25 Memory handler: cannot allocate 22 bytes of memory 2006.11.29 13:28:25 Not enough memory for indicator Moving Average (EURUSD,M1) What is the best...
[Deleted]
Hi All Help me to write the code for indicator is active for specfic login with specfic time period like 1 week , 1 month or 1 year .. how can i set this indicator.. Guide either i can add it in indicator itself or need to write a script in seperated and put it in under EXperts/Scripts
hello want try to code range bar in mt4 but want to have filled & non filled empty candles just as a rectangle thanks in advance for help regards
Hi, I am running an EA on EURUSD . I would like to place orders on other symbols. How can I do it? Thanks in advance. With Regards, Krishna
[Deleted]
Hello, I soliciting your expert advise on how to solve a critical error that I have encourter on MT4 and running a custom indicator (runs 3 different indicator for monitoring) for the whole day. I have attached a printscreen of the error. All advise will be appreciated. Thank you, David
[Deleted]
Hi, I am new to mql4 coding. I coded an EA to do some back-testing. As shown from the above picture, I had a buy position at a lower price where it loses money at a higher price. Can anyone give me a brief explanation of the possible cause? Thanks
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++) Lots = MathRound(AccountBalance()/100)/1000; lots = MathPow(2...
How , when close position with stop loss go to open anther position I used this http://www.strategytune.com what I mean is , when close buy position with TakeProfit don't do nothing when close buy position with StopLoss open sell position I hope it is clear
[Deleted]
Hello, I'm a newbie. I've written my first EA. It compiles and runs well, and it's actually making some money. However, I cannot make it work with the strategy tester. My EA works with several pairs simultaneously. Therefore I need to access info from those pairs, from the same EA script. When I am...
Will paper AMEROs replace the dollar by spring!? Who has any thoughts on this? Full version here http://alex-turik.intwayblog.net/?p=15#comment-29
I may be calling it by the wrong name... what I'd like to do is this... string varname = "EURUSD_High"; double <indirect varname> = High[0]; which would be converted to double EURUSD_High = High[0]; at runtime. Any help would be appreciated. Thanks, Neil
I want to find the previous day open, high, low, close. (PERIOD_D1) I used the code datetime open_time = StrToTime("00:00:); double shift1 = iBarShift(Symbol(),PERIOD_D1,open_time); double open = iOpen(Symbol(),PERIOD_D1,shift1); double close = iClose(Symbol(),PERIOD_D1,shift1); double...
I am having problems to connect to any brokers at work after they said they had updated their infrastructure. I tried two different laptops to connect brokers but none of them worked. When I am at home and use home internet, there is no any problem to connect to any brokers. It tells me that the...
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 orders or is a way to do that around the present code ?...
Hi, there! I am interested in having a good idea of how faster MT5's optimization speed is compared to MT4. Could not find any forum threads on MQL4.com related to it, so I thought of doing tests myself. But to achieve that I would need two versions of a robot implementing the same strategy on both
[Deleted]
What is the main reason for account disable. Is there any policy which can cause account disable. I have started 100 usd account . So can I make unlimited trades. Or Limited.... Please answer...
Any good signals for a 50:1 leveraged account?
I have tried to create this function with the if,else but am having difficulty. I would like for the function to return the number of the "if" criteria that is meet back to the program using checkordertype () . Is this type of function allowed using " if ,else ", as I am a newbie to functions would...
Hey guys, in the following code-block I created an order via OrderSend and tried to modify it. if (RiskHedge == true) { OrderSelect(0,SELECT_BY_POS); if (total == 1 && OrderType() == OP_SELL && aktiv_2 == true && Ask > (Preis+3*spread)) { OrderSend(Symbol(),OP_BUY,Lots,Ask,0...

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
If you do not have an account, please register
Allow the use of cookies to log in to the MQL5.com website.
Please enable the necessary setting in your browser, otherwise you will not be able to log in.