Marcos Silva
Marcos Silva
  • Information
8+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Friends

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

Marcos Silva
Added topic Automated Testing - Forward Testing Errors
Hi All, I have a set of scripts that run the MT5 terminal automatically in optimization mode and output the result in xml format. I'm able to run the backtest without issues, but automated forward testing(using the script) is generating errors and
Marcos Silva
Added topic Need Help With This Function
Hello, Im having issues with this function and im not able to get the right values for my EA. Im looking to get the the StdDev cross of the upper bollinger band on my ea like the picture bellow: So far i wrote this code but i cant get the upper
Marcos Silva
Added topic Great indicator, Optimizing for EA.
Hey i was looking for a fast(Maybe zerolag) MACD indicator and found the Jurik MACD indicator and did some optimizations on the code to optimize the backtests but unfortunately for some reason i cant extract the new buffer i created for trend. Could
Marcos Silva
Added topic Speed up Backtesting/Skip Useless Ticks
Hi All, My Mt4 Platform is performing poorly with my EA in backtesting . I wish to speed things up a bit so i thought i could skip the useless ticks that are in between the high and low of each bar. Could anyone share a functional code for that? I
Marcos Silva
Added topic Need help to finish coding this indicator.
Hi, I came across this 2 indicators by mladen and though of adding the floating levels from one of them into the RSIstoch since it has more features. Something is wrong and i cant figure it out what it is. Could anyone please take a look and point it
Marcos Silva
Added topic Could someone explain why this indicator is not loading correctly?
Hi, I added a new buffer(trend) so i could call it using icustom from my ea and i also added a new external variable, the description is inside of the indicator. Every time i change the settings of the indicator alone on the chart i get "uninit
Marcos Silva
Added topic Im looking for the opinion of a bold mind.
In some time in the future ill be entrusted with a forex account passed down to me with some money in it +50.000 that runs on an EA. I have no knowledge of manual trading and wouldnt want to ruin this account with my tests. The EA will keep running
Marcos Silva
Added topic Do You Know of a Way to Load Live Trade History Into EA During Backtest?
So im writing a EA that will make use of live trade historical during optimization and i thought of writing the results to a csv when running and read during optimization. Option #1: Read the scv during init and write to array? Option #2: Read from a
Marcos Silva
Added topic Strange OnTester() Result
Until recently i was able to produce useful results from the ontester function but that has changed and i can't explain why. The results are different, while i do get a proper result running the tester i have "0" while optimizing. Please take a look
Marcos Silva
Added topic Metatrader 4 Command Line Powershell .ini Startup Example
Hi,    I've been unsuccessfully trying to start  from powershell command line the terminal.exe program. The .ini file look like this :   ; common settings Login=2089020454 Password=7ze45v3u EnableNews=false ; experts
Marcos Silva
Added topic Print Decimal Number With Defined Number of Characters
Im looking to print the following value :3  as 00003 value :124 as 00124 value :8324 as 08324 in this case it would be 5 characters..  is it possible? Thanks               
Marcos Silva
Added topic Sorting .csv file and trimming undesired results.
Hello folks,   I have the this sample data in my .csv file:   1,0.31,1.3,2.1 2,1.52,1.1,2.3 3,2.1,1.8.3.1 n+1,n,n,n and i would like to sort the rows on a descending order by the second column keeping the row values intact and then
Marcos Silva
Added topic need help with iBandsOnArray()
Hello,   Thank you in advance for looking this up. Im looking to get the the StdDev cross of the upper bollinger band on my ea like the picture bellow:         So far i wrote this code but i cant get the upper bollinger
Marcos Silva
Added topic Need help with this piece of code, should be simple.
Hello,   Thank you in advance for looking this up. Im looking to get the the StdDev cross of the upper bollinger band on my ea like the picture bellow:       So far i wrote this code but i cant get the upper bollinger band(always
Marcos Silva
Added topic Quick question on a piece of code..
Why would FoundFirst always be equal the Low fractal and never update if a high fractal gets updated on this ZigZag scan...          int FoundHigh= 0 ;        int FoundLow= 0 ;
Marcos Silva
Added topic Why would an ongoing optimization stop by itself and give "Optimization stopped due to a fatal error in the EA" ??
Hi,   Im receiving the following error during pass 5++(more than 500) on my ea.    "Optimization stopped due to a fatal error in the EA"   Im thinking that one of the parameters from the optimization is forcing a zero divide on
Marcos Silva
Added topic Code Protection: New MQL4 language(Build 600+) decompilation protection and other crack techniques.
Hi, I read about the new mql4(Build 600+) and already updated my EAs, now i have a question. How secure is the new protection against crackers and other types of executable cracking and modifying the code. EX: hex editing date of expiration, memory
Marcos Silva
Added topic Error 131. Cant understand Why and i have read a lot about it. Please help.
Hi, Im getting the following message, and ill attach the function that closes the order also... 2013.11 . 28 05 : 49 : 52      2012.12 . 21 12 : 40   Yoda GRInD v1. 2 EURUSD,M1:  OrderTicket() = 11 CloseSellLot
Marcos Silva
Added topic Closing Order Partially in MQL4 and Getting the Ticket Number For the Rest of The Order.
Hi, Im a little bit confused with the ticket number for the order remaining, i have been doing tests and the order closed partially is the one with the ticket number already assigned with the beginning lots so whats the number for the lots left? Ex
Marcos Silva
Added topic Calculate lot size from Takeprofit(distance in pips) and expected profit in Dollars(or any deposit currency)
Hi, Im currently using this formula to get the lot size: ThisLot = NormalizeDouble (( (MarketInfo( Symbol (), MODE_TICKVALUE)  * ( (TakeProfit + SPREAD())*Ponto( Symbol ()) ) ) / MathAbs (EPTotalBuyProfit) ), lotDigits ) ; Function Ponto()
12