desert
desert
Friends

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

desert
Added topic New compiler at MQL4?
Hi After some months away of MQL4 programming , today I have compiled a code which was working perfectly before (9 months), but now I got a compiling error. This is the code line: switch(Orders[index,1]) Orders is defined like this: double
desert
Added topic MODE_SPREAD & MODE_STOPLEVEL
Hello, I have an issue with these instructions MODE_SPREAD & MODE_STOPLEVEL.   When I check these values on a 5 broker digit I got these values for example:  MODE_SPREAD : 17.00000  MODE_STOPLEVEL : 10.00000 That's ok. 
desert
Added topic Copying trades between MT4s
Hi, I'm going to develop an EA to copy among my accounts, I see I could do that with a file text management among the accounts, using the text file as the vehicle with the information to copy. But, to do this with other MT4s in other
desert
Added topic EA detects other EAs
Hi everybody, Is it possible than an EA detect if other EAs are running on the same terminal? If so, could you show me the routine? Thanks in advance 
desert
Registered at MQL5.community
desert
Added topic User validation server
Hi, I'm looking to have an user validation server because I will distribute an expert advisor just among some specific traders. I would like to contact someone with the knowledge to do this, of course I will pay.  Thanks
desert
Added topic Dynamic Array declaration
Hi, I would need to define the size of my array by an external variable, is that possible? Example: external int Size; ... double Orders[Size]; When compiling it fails on the array declaration: "integer number expected" Thanks in advance
desert
Added topic What happens with the data on arrays when the MT4 is reseted.
Hi people, I'm creating an EA which uses an array to store different price leves to be considered for each opened order. I'm worry about what happens when external events affect the EA execution, for example: interruptions in the internet connection
desert
Added topic Minimum lot size allowed in historical data
Hey all, I used to use historical data from Dukas which is converted by scripts to MT4. During the last time I have downloaded and converted data , the minimum lot size has been defined has 3.0 lots. I do not have idea the reason of this value. As I
desert
Added topic Need MT4 older version
Hi, I'm looking for MT4 4.00 release 399 or 402, anyone could share it? This is for backtesting purposes. Thanks
desert
Added topic OBJ_VLINE
Hello, This is my first time using graphical objects in an indicator. I would need to draw a vertical line everyday at the same time "22:00", could you please guide me to a solution? Thanks
desert
Added topic AccountBalance()
Hello, I use function AccountBalance() to get the lot value: LotValue = (AccountBalance() * (RiskPercentage / 100.0))/(10.0 * SL); Should I consider the account currency for this calculation? Is the amount returned by this function in the account
desert
Added topic Lot decimal places
Hello, In my code I use this sentence: LotValue = NormalizeDouble(LotValue, LotDecimalPlaces); Question is: How to know the right value for variable LotDecimalPlaces? I mean in an automatic way inside of the EA. I thought that value could be equal to
desert
Added topic Relative Drawdown
Hi, I would like to know how the Relative Drawdown is calculated. I have googled and read other explanations, but it seems everybody has a different answer and opinion. I know that Absolute Drawdown is the maximum amount under the initial deposit we
desert
Added topic Error when backtesting
Hi, I have developed an expert advisor to trade Gold, it works ok when attaching it to a chart, but I got a critical error when trying to backtest it with the Strategy Tester . Any idea about what to check? Thanks
desert
Added topic Partial close - Help needed
Hi all, I want to implement a partial close function, the order should be closed partially when it reaches some pips in profit. What I have doubts is how to know when the order has already been closed partially, for example: -Buy order, open price
desert
Added topic Looking for a MA cross EA
Hi guys, I will apprecite if someone knows a MA cross EA where the MA periods are parameters . Thanks in advance
desert
Added topic Where to save order attributes?
Hi all, this is an issue at the design level. When each order is opened, a calculation is made which returns two take profit levels , these TPs are internals and are differents from the take profit defined in the order at the creation level. The
desert
Added topic How to deal with 4 o 5 digits ?
Hi, I'm implementing a function which get the numbers of pips between two price levels. But depending of the digits of the broker I get differents values, for example Price1: 1,5510 Price2: 1,5500 Difference in 4 digit broker: 0,001, so 0,001/Point =
desert
Added topic Cross of EMA's - Need a experienced opinion
H i, I have to detect a EMA’s cross, for this I have two possible scenarios: 1-Comparing the EMA’s value for candlestick index 0 (current) against index 1 (previous). 2-Comparing the EMA’s value for candlestick index 1 against index 2. For option 1
12