Florin Ionescu
Florin Ionescu
Florin Ionescu
Added topic [BUG?] DRAW_CANDLES + indicator_chart_window = doesn't show
[BUG?] DRAW_CANDLES + indicator_chart_window = doesn't show Hi, All my indicators painting colored candles over the main chart don't work anymore. After an investigation, I realized they actually work, but, apparently now indicators are drawing
Florin Ionescu
Added topic Codebase, search results with more filters (scripts, indicators, mql4, mql5)
Hi, Wouldn't be better if, when we search in codebase for some script or indicator, we would have more filtering besides By Date and Relevance? Like: scripts, indicators, mql4, mql5
Florin Ionescu
Added topic [Feature Request] or [bug] ArrayCopy() with multidimensional arrays as parameters?
Shouldn't this work? double m[][ 6 ], x[ 6 ]; ArrayResize (m, 6 ); //generate x array ArrayCopy (m[ 2 ], x); //shouldn't this work
Florin Ionescu
Added topic [bug?] behavior of if (condition);
Hi, I made a simple mistake to write unknowingly a ";" after an if condition, it took me a lot of time to realize that mql5 permits it, and considers it valid if ( 0 );      printf ( "stuff" );   //will get printed
Florin Ionescu
Added topic [Feature Request] Period Separators color
Hi, Given that most of the time, the background color of chart is black, the current Period Separators' color is too strident, too much contrast. So it would be best to add Period Separators to Colors tab, in Chart Properties , to let the user change
Florin Ionescu
Added topic Metatrader 5 client terminal process doesn't go away (task manager)
Hi, 1. I close Metatrader 5. 2. I try to start it again, but it doesn't work. 3. Eventually, i discovered the process is still there in task manager. 4. If I force close it ("end task"), I can start Metatrader 5 again next time, no problem. This
Florin Ionescu
Added topic typedef pointer to function issue, or bug. can anyone help?
typedef double (*TFuncD)  ( double );   //Double in, double out int OnStart () {    TFuncD f= NULL ;    if (s2funcx( "1" , f))      printf ( "nr %.2f   f(nr)=%.2f" , 361 , f( 361.0
Florin Ionescu
Added topic StringToShortArray() issue
It took me a while to figure out the bug in my code, but it boils down to StringToShortArray() function this is the test: void test_strings() {      ushort a[];      int alen = 0 ;     
Florin Ionescu
Added topic Trades levels, ray right only? Instead of horizontal lines?
Wouldn't it be more logical and useful for trading, If trades levels would be trendlines with ray right (and ray left unchecked)?  This way it would be more clear, levels would show where the trade actually started.  Also it would bring a
Florin Ionescu
Added topic ArrayInsert() issues with fixed arrays and docs
   //--- destination array    int c[ 10 ];      for ( int i= 0 ;i< 10 ;i++)       c[i]=i;           //--- source array  
Florin Ionescu
Added topic Who would use/like an inversion button, to reverse pair on chart?
A button that, for example, instead of EURUSD, will display USDEUR. I presented this suggestion as a feature request to service desk . And, as usual, they rejected or dismissed with the typical copy/paste answer i see each time i make a suggestion
Florin Ionescu
Published code Awesome Oscillator - 4 colors, customizable
Awesome Oscillator, customizable, 4 colors (as seen on some AIMS YouTube videos), and some more parameters.
tradeviewer20
tradeviewer20 2020.10.14
Hi Florian, is your "Awesome Oscillator - 4 colors, customizable" also available for MT5, if yes, where? Thanks !
Florin Ionescu
Added topic Confusion about (past) timezone in MT5 charts
I bumped into this, when I wanted to find the exact time of the EURUSD's low, 7 jun 2010, 3:00 (currently displayed time on 1H chart)   Some facts first: 0. I live in GMT+2 timezone. I am talking about  access.metatrader5.com:443 demo
Florin Ionescu
Added topic ArrayResize() question
I thought ArrayResize() would also shrink the array, if a smaller length is given. I did: int a[] = { 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 }; ArrayResize (a, 2 ); printf ( "len %i" , ArraySize (a)); //the result is not 2   Is this normal? or
Florin Ionescu
Added topic Do other need back and forward buttons in metaeditor?
typo in title: Do others need *   The lengthier the code becomes, in my case => more searching (Ctrl+F) => the more I need to move back and forward in the code. Other IDE's have these back and forward buttons, or shortcuts at least. Is
Florin Ionescu
Added topic expression parser library?
Is anyone aware of a library to parse string expressions, that can work with mql5? I am trying right now muparser, but I'm struggling with importing (I don't know yet what i have to import and how to use). But it's possible it will not work, as it
Florin Ionescu
Added topic MQL5 switch command question, is this normal?
I have the following code:   switch (_ap) {        case PRICE_CLOSE : s = "Close Price" ;
Florin Ionescu
Added topic why is int() different than MathFloor() for negative numbers?
I mean  int(-2.5) -2 MathFloor(-2.5) = -3 why is this?  /*  I stumbled upon this issue when trying to create a function getlastmonday(datetime dt) I expected -1 % 7 = 6 but it gives -1 */ 
Florin Ionescu
Added topic metaeditor64.exe constant cpu around 14%. is it normal?
14% is idle mode... if i simply move the window around with the mouse => at least 35% cpu. is this normal?   i'm on win7 64 bits, 2.8 ghz cpu, 8gb ram  metatrader latest version (build 1150, 22 may 2015) 
Florin Ionescu
Added topic Metatrader 5 crashes more often? or I'm an isolated case?
I'm on a windows 7 64 bit, metatrader 5, 64 bit also. The crashes appear sometimes, but only after compiling the scripts/indicators, then coming back to metatrader terminal, then crash. Somehow, with last updates, crashes tend to appear more often