MQL4 and MetaTrader 4 - page 181

  EA not working  (2)
HI Fellow traders, I currently downloaded an EA and wanted to back test on strategy tester but its not working. The default MA EA is working fine. When i contacted the developer or the EA, he asked me to OPtimize the EA and gave me a link to read
Good morning from the uk everyone. So am looking for a bit of help regarding some code I've been working on. My code is attached and as you'll quickly tell I'm still new to this and its definitely not the neatest/most efficient right now. However the reason for the post is I'm having stop loss and
can you please help me with hidding rsi input parameters
Hi. Where exactly do I download the generic version of MT4??? Please don't say from a broker. When I go to https://www.metatrader4.com/en/download and click the "download MT4" link, it still installs the MT5 version. Why the deception? Thanks
  Lot Sizing  (2)
Hi I would like to create a function that computes the correct lot size for all forex pairs and commodities. is this possible ? where should I start ? I have a fixed stop loss and risk percentage Thanks
Hi there, I am trying to write an indicator to work on Fibs on a chart. To debug this, I created debug.tpl and when I run the indicator in the Debugger, the correct template loads. The debug.tpl has as Fib and some MAs. When I step through the code that assigns some values to variables, the values
I created an indicator that measures the IBS (internal bar strength), I used part of the function listed in MQL docs but I do have a problem when I switch time frames, it doesn't seem to run the OnDeinit to clear up already created objects before it starts creating new objects based on the new
  What is a TICK?  (43   1 2 3 4 5)
What is a "tick" in MT4
[Deleted]
So, is there something I have missed here or is MT4 decided it just doesn't feel like showing the ASK line, despite numerous attempts at getting the terminal to show the ask line... and also here ..and I've even cheked to make sure the color of the ask line isnt camoflaged with the chart color as
HI, I am a senior high school student and I am new to trading and mt4 and ive been studying different financial market for the last 6 months. this grid system has a 60-70 percent winr ate and have a high gains in a day. this system doesn't use any indicator and news or fundamentals because indicator
Hi everyone, I want a code to insert SL to my actual EA that use martingale, but I want close trades when go wrong direction, for that reason I want SL and time life order, can someone help me with the code? Thanks
[Deleted]
  Help writing EA  (2)
Is there someone out there willing to help me write an EA? I have a proven strategy but I need assistance writing a trade EA. Thanks.
Hi was wondering if anyone can help with an email issue. I set my opotions up as below but am still getting an error. Any ideas? Many thanks Kenny
Hey community, i need someone who knows how to integrate hedging in an existing MT4 EA. But at first i have some questions and some things to discuss about the implementation in the existing EA strategy. If someone is interested, please contact me. Thank you
Can anyone help me with the correct formula for detecting Three White Soldiers and Three Black Crows? I've tried several different patterns and I can't detect them every time. Three White Soldiers: iClose ( NULL , 0 , 1 )> iClose ( NULL , 0 , 2 ) && iClose ( NULL , 0 , 2 )> iClose ( NULL , 0 , 3 )
[Deleted]
Morning all, I have a Messagebox() set up as a void() function - called messagePrompt(); which is called upon when pre-determined conditions are met. The function itself works fine, it's called, a message comes up, no issues here, however, slightly confused as to the logic around the return result
Can Same vps server cancel latency delays ...because it just open and closed the trade toward when the signal acct is about to close its trade
  Fake profit  (3)
Can a broker or someone...execute trades open and close it with fake profit or edit the profit on MT4 to look like it’s profitable
What's the difference between text and text label in MT4
Galera estou recebendo esse erro no bot alguém pode me ajudar? o erro é esse: WINZ21 Buy's Break Even ERROR Preço atual: 103940.0 Abertura da ordem: 103925.0 tipo de ordem:Compra SL antigo: 102425.0 SL novo: 103945.0 alteração em pontos 30 error #4756 o codigo é esse abaixo: ***
I draw a trend line and when I change the timeframe disappears  why?
Good morning, I use an icustom function to look up the value of a buy or sell indicator in the previous candle: ex: double xyz (int index, int shift) { return (iCustom (Symbol (), PERIOD_H1, "indicator", index, shift)); } then in the ontick function I specify the following: if ( xyz (1,1) <= -
How to make mt4 default iExposure indicator sorting by pair name like below ? Audcad EURchf Gbpusd I trying sort the array but not working : ArraySort(ExtSymbolsSummaries,WHOLE_ARRAY,0,MODE_ASCEND);
I can't understand
When I print this code, it gives me the index number instead of the price. I want to get the price and not the index number. double RSIValuesArray[ 6 ]; ArrayInitialize (RSIValuesArray, 0 ); for ( int i= 0 ; i< 6 ; i++) { RSIValuesArray[i] = iRSI ( _Symbol , _Period , 14
I was trying to find a way to add a recursive indicator as a resource in an EA or in an Indicator , I tried searching but couldnt find anything that could help Is it absolutely impossible to add a recursive indicator as a resource ? Because no matter what I try it keeps on giving me the error
void OnTick () { if ( OrdersTotal () == 0 ) { if ( iCustom ( Symbol (), PERIOD_CURRENT , "mt" , 0 , 0 ) > 1 && iCustom ( Symbol (), PERIOD_CURRENT , "mta" , 0 , 0 ) > 0 ) { OrderSend ( _Symbol ,OP_BUY,lots,Ask, 1 , 0 , 0 , NULL , 0 , 0 ,Green); } if ( iCustom
Hi, I try to understand why i haven't the right &Profit amount on terminal vs my calculation. Please see my my balance 1000€ account in EUR leverage 100 Risk : 1% => 10€ for a BUY trade : BID / ASK price : 1,18874 / 1,18905 spread (3,1) StopLoss = 30pips => 1,18605 With calculation, for 30 pips
I'm slowly learning MQL4 and I would prefer to learn for myself rather than have everything handed to me on a platter. If anyone can help me on the following sticking point, that would be greatly appreciated. I am basically trying to display the current exchange rate of a particular currency pair as...