[Deleted]
If so, what do I need to do to receive a copy? Thanks, Chris. Automated Trading Solutions Ltd
//+------------------------------------------------------------------+ //| NewCrossAverage.mq4 | //| doshur | //| www.doshur.com |...
[Deleted]
Does the MetaTrader4 app work on 4gs with IBFX broker? I've tried and just get invalid account. Thank you.
[Deleted]
Is there any answer to the question, why if I use iHigh, iTime, iHighest or any of that function and choose a lower Timeframe in the function as it is in the chart, the result will be 0 for about 16hours(if I use 1M in the function). This Problem also only occurs in the Backtester. I've been reading...
Hello.. I work with the distance between price and a moving average ... But, there are more ways to work correctly with ma 's ?? Thanks, for your contributions
Hello, I have a quite strange problem. I have indicator, which plots one line with constant slope per bar. If I include this indicator into expert indicator line plots strange way during testing period. Before testing period it looks ok. If I reexecute indicator on expert it plots OK. What is...
[Deleted]
Dear Sir, Sorry, I'm very newbie in forex, I hope someone helps me. I'll open a trading position, its lotsize 3% of FreeMargin. The algorithm is like this:...
Hi, I am programming an indicator table which shows my the gradient of the macd. Here I have a few problems: for(x=0;x<9;x++) { double MACD_gradient = ( iMACD ( Symbol (),period[x],FastMACD,SlowMACD,SignalMACD, PRICE_CLOSE ,MODE_MAIN,Bar_last+ 1 )- iMACD ( Symbol
Any suggestions on this, before I stray into a dead end ? //------------------------ void ModifyPending() {// The globals PriceBuy, SL_BUY are generated by indicators etc and may not always be 'sensible', especially in relation to eachother and current market price int MoveStep =...
hello,, please i have the logic that gives me the number of the bars like so,,, if i wan t o get the low of the bar number 5,,, how can i type it please,, thanks alot
Hello, I am using MT4 . I have set the Stop Loss point on when i am trading but many times the stop loss point not trigger correctly it mean If i have buy EUR/USD pair at 1.41920 and set the S/L at 1.41620 than if the market move to down trend then it will be trigger my S/L point 1.41620 but it is...
[Deleted]
First of all I should state that this problem doesn't exist as long as your broker has permanently fixed spreads. If for any reason your spreads ever change, then this problem applies to you. I was running the backtester and optimizer over some data using a strategy that uses no indicators. I would...
[Deleted]
Hello, I tested my EA on EURUSD - 5. And I found an interesting thing. I attached 2 picture about it. Somebody can tell me, how or why can I got this. On picture Ár mean price, and Jutalék mean commission. Thank you, Mihaly Szlauko
[Deleted]
Hi guys, I am trying to find the sum of my all open profitable trades, I wrote this function any ideas? Thank you int findProfit(){ int total = OrdersTotal(), profit; for (int cnt = 0 ; cnt <total ; cnt++) { OrderSelect(cnt,SELECT_BY_POS...
Hi, i'm learning MQL in my free time, and I'm currently trying to learn one basic thing but Can't find info about this or documentation. Let say i'm trying to code an Expert Advisor to open orders based on the output of indicators on the charts, for example when the William's Fractals open the Arrow...
[Deleted]
Has anyone ever developed a com class to allow data to be extracted from MT4 platform? I have developed a TCP/IP wrapper class which works great, but MT4 does not seem to allow multiple TCP/IP sessions!? I see this article online, has anyone have any experience with this? Its supposed to work for...
i have this code bool Lines3(){int Point1 = iBarShift(NULL,0,ObjectGet("Click1",OBJPROP_TIME1)); int Point2 = iBarShift(NULL,0,ObjectGet("Click2",OBJPROP_TIME1)); if(Point1==Point2) return(false); int X0 = iLowest(Symbol(),Period(),MODE_LOW,MathAbs(Point1-Point2)+1,MathMin(Point1,Point2));...
I can see 9 consecutive losses in backtesting - many times - yet the report says 2 consecutive losses. The model is using control points but that ought not affect things. What else is not reliable?
[Deleted]
I've been writing a Program that includes the iMACD -function, but whenever I tried to get a Signal of the MACD, I got the message: zero divide. By finding the Problem I printed: iMACD(NULL,0,10,20,7,PRICE_MEDIAN,MODE_MAIN,1) only, and realized that whenever the MACD value get smaller, It will give...
[Deleted]
Hi, i want to have multiple MT4 from different brokers, this is primarily due to the fact that i want a large number of symbols to analyze. I have developed some scripts/EA that i use which are very helpful to me for trade signals. i do not want to maintain separate copies of them for each MT4 but...
When I apply a saved template in a 'open chart' in EA, all the buy/sell signals will gone. How could I set template in EA 'open chart', so that I can see the same chart/colour/indicator that I save in a normal template?
There are a couple of well-known indicators - RBCI (https://www.mql5.com/ru/code/7205) and TTF (https://www.mql5.com/ru/code/7377). They are not very effective by themselves and do not differ much from other indicators. But if we put them on top of each other, we get something rubbish - the pair
Hello :-) I am having trouble distributing some .ex4 files. Some people use them fine, and others find a sudden crash of their plattform. If instead of receving the binary, they compile the source code themselves, everything runs fine. I am building the binary with MetaEditor Build 419: some users...
I had a problem with WindowPriceMax() & WindowPriceMin() not giving correct values but thought it was something I was doing wrong . . . . I never took the issue any further. Then yesterday I noticed an interesting phenomenon, I was grabbing charts from MT4 while it was minimized and some text...
"Teach" the EA !!! [it made the number of trades (not orders) I wanted during the interval I specified ]
(73 1 2 3 4 5 ... 7 8)
Good day!!! Tell me, Mr. programmers, is it possible to "teach" the Expert Advisor to make a certain number of trades
Hola, Estoy Buscando Alguna persona Experta en Programación de mq4 automatizar EXPERTOS Con mis estrategias.Un saludo.
Hello !!! Here, are some information about this.. https://docs.mql4.com/constants/arrows But, where I can find more arrow codes ( with a picture ) ??? //---- drawing settings SetIndexArrow(0, 234); SetIndexArrow(1, 233); Really thanks for the information.. ( Sorry if it´s a silly question )...
Hi, I have the possibility to get backtest data. What data's do I need for the best "true" result? Tickdata or Minute-Data or ALL Timeframes?? Bid AND Ask and of course Open, High, Low, Close Or is there a better system to do backtests f.e. ninja trader, ...
Good day to all! I am dealing with prognosticating algorithms for a long time and have achieved some results. Of course there were ups and downs too. The more I do this business the more I get the idea that any forecasting is doomed... I would like to hear the opinion of forum members on this
[Deleted]
hi i want to send order buy or sell when new bar is appear. But i don't want to use function minute() to check. Right know i check new bars with function Minute() == 0 then i send order, but last time i don't have any transaction in 0 minute and my order was not send. Any idea ?
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.