Mikołaj Gogola
Mikołaj Gogola
Friends

Add friends via their profile or user search and you will be able to see if they are online

Mikołaj Gogola
Added topic Race condition in tester?
Hi, I did simple test and the result was very weird. double myCurrent[ 100 ]; void OnTick () {    double dt = 12345 ;    if ( Open[ 1 ] != dt )    {        static int counter = 0 ;
Mikołaj Gogola
Added topic How to edit already calculated buffers in the indicator?
Hi, I suppose my question is trivial, but I am strugglin with this. I want to draw straight lines on the chart when it hits specific hour and I want them to be longer than one bar. Lets say I have 1H Chart and when it is 12 o'clock I want lines drawn
Mikołaj Gogola
Added topic How to track changes in grid height?
I noticed that the pips range on the right side of the chart keeps changing from time to time. Is it possible to track it somehow inside my EA code? Also what is the reason behind it? Why does it change
Mikołaj Gogola
Added topic Why ticks of RSI indicator have different timeframe length?
Hi, I noticed this with some other indicators too. They seem to have variable length between ticks. Lines drawn on the chart are of different length with respect to timeframe. What is the reason behind it? How can I measure it
Mikołaj Gogola
Added topic Where can I read the code of basic MQL functions?
Is it possible to access the source code of basic MQL functions like iMA()
Mikołaj Gogola
Added topic Can growth of the output file slow down EA on tester?
I made data collecting EA. It simply runs on specified period of time and saves every tick to a file as binary using FileWriteArray(). I can judge with my eyes that the speed is decreasing with time elapse. The file is opened at the beggining inside
Mikołaj Gogola
Added topic Does iCustom slow down Strategy Tester and cause problems with Graph tab?
Is it possible that iCustom function calls are slowing down my Strategy Tester ? Is it somehow possible to prevent iCustom from drawing or something like this? I just want to grab values from indicator buffers. I have also weird issue with Strategy
Mikołaj Gogola
Added topic Index buffers
Are numbers of index buffers created with SetIndexBuffer() same for whole Chart? For example if I have Indicator 1 and Indicator 2 and they both set index buffer 17 they both share this same memory
Mikołaj Gogola
Added topic Multiple candle sizes in EA.
Hi, Is it possible for EA to access arrays of candles with different size than current Chart size? I want my EA to perform some calculations on 1-minute candles but other on 1-hour candles. Can it be done
Mikołaj Gogola
Added topic Is it possible to define enum of double type?
I would like to have enum with double values. I tried C++ approach but got errors. Is it possible to define type of enum elements in MQL4
Mikołaj Gogola
Added topic Is it possible to measure range between candles in pips?
I want to perform some geometric operations on chart, but I don't know how to define X axis in pips
Mikołaj Gogola
Added topic MQL4 MetaEditor preprocessor to disable compiler warning.
Hi, is any preprocessor directive available for compiler to not throw warnings? I made kind of library with bitwise operations and compiler throws 120 warnings because bool type is expected. I could cast to bool explicitly but the code becomes much
Mikołaj Gogola
Added topic Problem with calling member functions of a struct in MQL4.
Hi, I have a problem with calling member functions . They seem to be called as regular functions and do not modify struct member variables. The reason for this could be my "vector" array wrapper. ``` template < typename T > struct vector {
Mikołaj Gogola
Registered at MQL5.community