• Information
8+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Bad circumstances past is not worth writing, and other things are under consideration if to others should be told. If someone says NO!, -- > I like because I am alive and I like my life.
Just I don't like too much murderers in the planet World.
Edi Dimitrovski
Added topic Any Method for Automating Manual Trades without Strategy
I am sorry if it sounds strange, but the place is exactly for this forum (other platforms on another place).  This is the story : I've downloaded vTerminal , since I had problems (probably only me) working with real trades with, I made very
Edi Dimitrovski
Added topic I'm not able to find the error.
I keep to re-read the code, and is looking to me without a solution to find the error. It is Index of Currencies, and because is reading/calculating correctly other data depending on correctly reading same pair "EURxxx" before, it has been read +
Edi Dimitrovski
Registered at MQL5.community
Edi Dimitrovski
Added topic Local initialized variables
When there is local function variable initialized example: _localFunction ( int function_Variable ){} it is not available to other functions but it's taking space in memory, with every call of that function, variable is initialized again. My question
Edi Dimitrovski
Added topic Alert indikator
There are 7 indicators included, MACD, (2 MA), Stochastic, RSI, CCI, WPR, RVI. There is no drawing , just alert on last bar or shift adjust. There is option for all or each alone or more of them, but it's not shown which indicator gives the current
Edi Dimitrovski
Added topic SECURITY question
I have security question. It happened to be added new user with set:administrator - Windows 2003 server. Listed: Path: E:\Programi\MetaTrader 4\terminal.exe Properties Security Group or user names: Account
Edi Dimitrovski
Added topic Memory calculation...
Does someone can tell me how much bytes are needed and used from memory for ex.: static int ArrayIntegers [ 3 ] ; static double ArrayDoubles [ 3 ] ; static bool ArrayBools [ 3 ] ; static string ArrayStrings [ 3 ] ; //* all with 2 characters after
Edi Dimitrovski
Added topic When does MarketInfo function is getting data...
When was run indicator (script or expert), once the program is started after received tick, does the MarketInfo function is making adittional requests (and every time) from server for every call of the MarketInfo(symbol,22) or other
Edi Dimitrovski
Added topic please I want to calculate how many lots I can open
please I want to calculate how many lots I can open for one EURUSD I can open 5 lots with 5,000 but for GBPUSD I can open 2.5 lots anyboby can help me thank please write code for me thank very much
Edi Dimitrovski
Added topic Can I decode my *.ex4 indicator?
I saved old version only, in *.ex4 compiled coding, the *.mql version I have changed with new codes... Can I convert my old version from "*.ex4", to review the code. Does exists any possibility to return the old "*.ex4" in
Edi Dimitrovski
Added topic Question "Trade" script
Hi, question: the script "Trade" needs some changes or does not everywhere works as default? This is what I am getting : 19:28:10 trade USDJPY,Daily: loaded successfully 19:28:12 stdlib USDJPY,Daily: loaded successfully 19:28:12 trade
Edi Dimitrovski
Added topic Short question about standard indikator in iCutom...
Can I use iHighest in custom indikator for higher and lower period without previously opened chart, does the data indicator is colecting is from history folder or it is updated in this case from incoming data. Sample for using this code in indicator
Edi Dimitrovski
Added topic Question about MailBox and Journal
hi, in experts folder: - is there option to forward received emails from terminal mailbox to another ( specified ) email ? - is there option to check all back ( error ) messages in terminal journal and compare them with assigned defined ? - is there
Edi Dimitrovski
Added topic Counting symbols and auto MagicNumber
hi, can I use this functions in Expert Advisor Script for counting symbols? int curencies () { int aa = 0 , bb = 0 , Sn = 0 ; if ( ! GBPUSD ) aa = 1 ;   if ( ! EURUSD ) bb = 1 ; Sn = aa + bb ; return ( Sn ) ; } also different MagicNumber for
Edi Dimitrovski
Added topic ERR_ZERO_DIVIDE 4013 Zero divide.
What could be "ERR_ZERO_DIVIDE 4013 Zero divide" - *Zerro devide* I am getting when running the EA in test? It seems everithing ok, I've checked more than 20 times. Can someone tell me on what could point Zero Devide in errors? Calculating
Edi Dimitrovski
Added topic EMA in EA showing value 1 ...
Is this correct, I can't find my mistake. When chart is open it's showing 2 lines MA with "Period 1" - Code in script is: sig0 = iMA ( NULL , 0 , 12 , 0 , MODE_EMA , PRICE_CLOSE , 0 ) * 2 - iMA ( NULL , 0 , 26 , 0 , MODE_EMA , PRICE_CLOSE
Edi Dimitrovski
Added topic is it possible to call iMA in EA with another iMA??
Is it possible on one MA to apply another MA? Ex.: double var= iMA (NULL, 0, 3, 0, MODE_SMA, PRICE_CLOSE, 0) One MA is "var", now on this MA to apply another MA? Ex.: double var1=iMA(NULL, 0, var, 0, MODE_SMA, PRICE_CLOSE, 0) , what I need