Forum

Too many signal connected push notifications

I receive several push notifications a day about signal connected. Is it possible to stop this ? I use push notifications only for trade alerts

Signals problems ? can't subscribe, trades not actualized

Does MQL5 signals have some connection problems right now ? Some Signals I follow are blocked from subscription and trades not actualized since 15 hours Server problem

How to remove chart trade arrow ?

I am running a scalping strategy and with all the chart trade arrows, my chart is unreadable. Is there a way to remove them

EA to verify historical data for backtesting ?

I just realized that in AUDNZD for exemple, several days or weeks were missing in historiacal data downloded, this in all brokers. Is there an EA that could check historical data and tells the missing days

Script send email for each new open position ?

does this script exists ? send email each time a new position is open (for all pairs and EA) to use on a VPS account with several EA thanks in advance

Problem closing ALL positions

Do you have the same problem. When my EA closes ALL positions in Demo it works fine. But with my real account Alpari UK, nearly every two times it lefts open positions. Any idea ? thanks Total=OrdersTotal(); if(Total>0 && Error!=0) { for(i=Total-1; i>=0; i--) { if(OrderSelect(i, SELECT_BY_POS

Excel live data to mt4 ?

I can export live data from my broker (future, stocks, ETF...) to Excel or OpenOfficeCalc, with DDE link. He has very poor graphic tools. Do you think it is possible to import those data in real time into our great and free MT4 ? Thanks :-)

Help: Datetime everyday at 00:00 or find 00:00 bar index on each new bar

I try to use an indicator logic in my strategy. I need to find the number of bars back to midnight 00:00 to calculate my indicator, on each new bar Now the indicator does this : int FindStartIndex(datetime startDate) { for (int i=Bars-1; i>=0; i--) { if (Time[i]>=StartDate) return (i); } return( 0);