fly7680
fly7680
fly7680
Added topic ChartSetSymbolPeriod()
Asynchronous functions are obviously placed in the queue of other events in the chart, is it possible to view the all message queue of the chart and figure out how much time is left until the function is executed? bool   
fly7680
Added topic Problem with many rectangles
Hi guys, I have a problem with rectangles... I have a for loop with which I draw many rectangles on the chart,(15/20), and agni new candle I want to update the anchor point and not a problem this. But I notice that the indicator fails to update all
fly7680
Added topic Set "value" text
hello everyone, how can I set this value from the text settings? ObjectSetInteger ( 0 ,nome,OBJPROP_ // what do I insert
fly7680
Added topic Problem whit reboot MT5
I have a problem restarting MT5 if I load the indicator on the chart the first time everything is ok but if I close and restart MT5 the time is not initialized correctly //+------------------------------------------------------------------+ //|
fly7680
Added topic Error -1 iBarShift
hi everyone, i have a problem with this iBarShift function. As soon as I look for a candle before midnight on the server, it returns error -1 as if it has no data history but the history is there. void OnTick ()   {   
fly7680
Added topic clarification of RSI calculation
In the native code of RSI I notice that in the "main loop of calculations" the for loop does not start from the rates_total but from pos = 15. Why do I find the RSI value of index 0 in rates_total-1 instead of index 0
fly7680
Added topic Panels and Dialogs CSpinEdit
hello everyone, I'm writing a panel and I wanted to ask if you can set and use the CSpinEdit class by writing in the text box and not just clicking on the increase and decrease arrows. I have not found the way thank you
fly7680
Added topic Draw_Line: does not draw the buffer (MQL5)
I am creating an indicator that draws a buffer line on the moving average values but the buffer is not written to the graph. #property indicator_chart_window #property indicator_buffers 1 #property indicator_plots    1 #property
fly7680
Added topic Simulation of Time in the Strategy Tester (MT5)
Hello, I'm doing some tests in MT5 on the strategy tester but I'm not clear the concept of TimeGMT. in this official mql5 article it is said that in the strategy testers the time is always the same as GMT. I have carried out a backtest of my EA and
fly7680
Added topic question for simple DLL
I created a simple DLL that reads a text file (http //: mysite.com/miofile.txt) from a server. Everything works perfectly but in only one case in a Windos 7 PC the DLL could not communicate with the server and this function returned false . In
fly7680
Added topic DLL and mql4
Hi all I have created a DLL that reads the data in a text file on the server and everything works correctly. Now I want to split the URL in the DLL and pass part of the path as an input parameter in my mql code but it does not work. my DLL is: extern
fly7680
Added topic MT5 Break Even
In MetaTrader5, when I open multiple positions, these add up to a single Trade. I can take the opening prices of the individual Trade: 1.21955 Buy first 1.22581 Buy Second but how do I take the price of the Green Break Even line: 1.22244525 Break
fly7680
Added topic Delete file. hst
You can delete hst files in folder history? 
fly7680
Added topic Problem random
I have an indicator loaded on 13 assets, each tick processes a series of data in D1, H4 and M30. In 10 MT4 the behavior is the same but a MT4 inside VPS did not perform a certain passage. Is it possible that with all these assets the memory of the
fly7680
Added topic Event Click
Hi everyone, is possible create a click Whit button in the graph and also have a click in a specific location on a web page
fly7680
Added topic refresh tips?
I created a button that updates the chart and its objects but is just an escamotage, you have less rudimentary suggestions void Bottom ( string nome, string text, int text2, int XSIZE, int YSIZE, int XDISTANCE, int YDISTANCE, color colore, color
fly7680
Added topic small problem with time filter
I created this feature for the time filter and it works, but if I close the Metatrader or compile the code for some modification, the function will no longer work. Should I initialize some variable? //Global scope extern bool   
fly7680
Added topic ChartSetSymbolPeriod maybe problem?
Hi everyone, I do not understand why using this feature, ChartSetSymbolPeriod (); my indicator is deinitialized and initialized each time I change symbol . How can I overcome this problem? thank you
fly7680
Added topic Small problem with operator ||
Hello to everyone, i would need to use this operator || Between functions but I give you an error: 'if' - expression of 'void' type is illegal. if ( myFunction1() || myFunction2() ){        myFunction3(); }
fly7680
Added topic ChartID(); little problem
I have a small problem with the addition of 10 charts in my indicator. In OnInit () I added this code to add 10 assets but first delete those open except the first one. Created buttons work but if I click to change assets, the 10 assets are deleted