General - page 354

for instance, I have a Robot which is trading on the 5Min chart but I will also collect and use the data of the last 1Min, 15Min, 30 Min or any other candle. How can I retrieve these data
Hi All, I use ChartSetInteger ( 0 , CHART_FOREGROUND , true ); to have the candles (not filled with color) in the foreground. Then I add an indicator and then the algo is drawing stuff on the chart. In the strategy tester, the indicator is in the background and all objects I draw are in front of the
Hi guys I realy need your HELP Please I a have a HUGE problem I was working in demo in my own laptop trying to fiND a new strategy during a month after backtesting it I decide to start in a real account. But in this strategy I need Equity Guard Expert Advisor using CAP equity Guard To avoid any
Hi, if I buy an EA with account 1 mql5 and buy another EA with account 2 mql5, can I use one mt4 terminal to connect for both mql5 accounts 1 and 2 in one broker account
Hi guys, sorry for my bad english, i wish convert an indicator for mt4 to mt5...i don't know how do it, anyone can be help me? The file is an indicator that draw with red dashed lines maximum and minimum of Asian session . Thank you very much to man will help me
I have a loss from july that is bringing down the signal growth. Can we clear it
Just a quick question: If I use the setup below, although not set as private, will GetSecret() be hidden from EA.mq5 , since it is not defined inside Interface.mqh ? Also, will EA.mq5 ever get access to globalVar ? Or can I safely declare global variables inside a library? Thanks! // Interface.mqh
Hello, I am trying to send a buy request using the metatrader python libary: import time import MetaTrader5 as mt LOGIN = ... PASSWORD = ... SERVER = "ICMarketsSC-Demo" symbol = 'BTCUSD' lot_size = 0.1 if not mt.initialize(login=LOGIN, password=PASSWORD, server=SERVER): print("initialize()
Hello, If possible I need help to add 2 separate pop-up and message alerts to this mt5 indicator the Awesome Oscillator on the mt5 chart: 1- First alert when the color changes from Green to Red or Red to Green (And the option to turn the alert on or off) 2-Second alert when it crosses the 0 Level
  Navigator.  (6)
Hi Friends, I have deleted MT4 -Terminal and installed it again. Now when I click on Navigator, it is empty. Can anyone help me to fix it? Thanks. Nillscash
My button can action event on real trade. But Can't do anything on Tester. Who can help me for example
please help me to decrease the DD
Hi , I've downloaded m1 data from tick story and imported it to a custom symbol in mql5 . When I ran a very simple EA that print me the bid , ask and spread value on a tick model I get results in a form of tick-data instead of m1 data . What I'm trying to figure out is where those tick values came
bool Long_Confirmation() { if (Long_Primary_Confirmation() == true && Long_Secondary_Confirmation() == true ) return true ; } Hi, I am having issues with this function above. For some reason the function after the 'and' operand is not called. The 'Long_Secondary_Confirmation' function itself
I have subscripted 2 Scalping signals for doing copy trade. I tried to solve the slippage problem for a long time but it doesn't work, I have moved my broker to ICMarket Raw Spreading acc for minimizing the slippage, but still the result is unacceptable
  Signal provider  (2)
Hi, I registered a signal in MT5, it doing well but it is not listed yet on the choices of MT5 Signals. What should i do
  VPS Help  (5)
Hi, I have a VPS through MT4 and I'm not sure if I've set it up correctly. I have synchronized all my data with the VPS server but as of yet no trades have been made and every time I open MT4 (After having the app completely closed) I get alerts under the journal tab saying that the advisors have
Hi I am using iIchimoku indicator to write an expert and I need to know the values of spanA and spanB but I can only access the current candle values but what I need is the ahead of time values. Can anybody help me with this? ichi_handle = iIchimoku ( _Symbol , ichi_period,ichi_tenkan, ichi_kijun
Dear all, Please, here is my case: I have subscribed to a signal and every day +1 of position opening, I receive this message before, closing the signal position opened in the previous day. Here is the messages I have found in the logs: 1 10:08:06.360 '74857': Signal - position #26568734 sell 0.10
Hi everyone, im new to this kind of setup but i have a question, i just opened a Signal account with MT4 use for HotForex. However, i also have a RoboForex with MT4. Question is…. Can i subscribe my Roboforex to my HF Signal? Your lead is appreaciated
Hi In MT4 you could use Hour() to give you the current hour of the day. How does someone do that within MT5? I need to send a notification each day at the same hour of the day. Thanks
which resources can one use to understand the basics of programming and then start learning MQL5
Hello together, I am developing an EA in MT5 and debugging worked all the time. Now suddenly after doing some changes (half a day without debugging) it does not work anymore: I can start (and stop) debugging from within MetaEditor and in the log I see it connects, but breakpoints are not working and
Hello, I downloaded a free indicator from the market and wondered if it were possible to automate the indicator using its alerts in order to place a buy/sell trade including SL and TP? thank you
I have created an EA that opens several new charts using... ChartOpen (symbol, period); If I open 3 charts for instance, I can see the following (see attached Capture.JPG file). When I click one of the above tabs to change chart, e.g. GBPUSD,M1 , is there a way my EA can get notified of this 'chart
Hello MQL5 community, We are planning to register as a company in order to sell products on MQL.  We don't see which documents are required to submit if you are a company, we only see the documentation needed if you register as a person. Can someone tell us what documentation we need to submit to...
Has anyone removed their trading robot from a chart (right click chart/expert advisors/remove, was done), even replacing it with another, to still find it opening and closing trades? It makes no sense why a robot should still be trading after removing it and refreshing the platform
Hello Hope all is well. What I am looking to do is a basically a MT4 platform with NO broker... Just data so I can chart any instrument I want. Any stock, any crypto , any forex , any index... I just want to buy a data feed thats real time and load it up and open any instrument in the world and use
  Indicator to EA  (2)
void DrawDivergence( const double &high[], const double &low[], const datetime &time[], const int first, const int second, const bool bull_flag) { string obj_name=prefix+( string )( long )time[first]+ "_" +( string )( long )time[second]; int wnd; if ( ObjectFind ( 0 ,obj_name)< 0 ) {