gangsta1
gangsta1
gangsta1
Added topic Backtesting with commissions
How do you account for commission when backtesting
gangsta1
Added topic Risk % of account balance code modify
I have been trying to edit my code to use an exact % of the account balance and it nearly does, but is always slightly off... I have tried many different edits and the following code is the closest that I can get... An example would be that on a
gangsta1
Added topic Dukascopy m1 vs MetaQuotes m1
I have been downloading m1 Dukascopy data and converting it into all timeframes to try and make up for gaps in the default metaquotes history center data. Is Dukascopy m1 data more reliable than metaquotes? I am asking becasue results are VERY
gangsta1
Added topic My new *easy* method of backtesting with Dukascopy data, please advise
OK, so having spent weeks messing around with different data and getting different results, I think I have found a good way to test my open prices only (once per bar) EA. Please note that I do not believe I need tick data for this testing as it only
gangsta1
Added topic Indicators showing different values on same broker/different platforms?
I have a cci entry criteria when it above 100. However on one platform from my broker this can occur a bar before another platform on the same broker so causes a confliction between the results. Why is this? Surely the value of the cci should be the
gangsta1
Added topic Last year gap in data from brokers?
I have downloaded data from the history center for Alpari UK amongst others but for some reason the data stops at the start of 2012 but goes way back to the 90's! Any ideas why? I dont want to have to go through the process of getting tick data from
gangsta1
Added topic Meta Quotes data timezone & GMT offsets
OK, prob the most frequently asked question and one that causes the most confusion! I believe that when we download data from the history center (meta quotes), this data is in GMT+1 & GMT+2 time with auto adjustment for daylight savings. Is this
gangsta1
Added topic Does open of bar/prices EA need tick data testing?
I only use open of bar not every tick on m15 and above...is it worth the time and effort to get tick data for 99% modelling quality? Some trades do close for a few pips but always on a new bar and not within a bar. I thought tick data was primarily
gangsta1
Added topic FXTM (forex time) redirectign to their site on mt4 demo account signup?
This is weird! I have downloaded different broker platforms and whenever I fill out an account with them (demo) and choose a server, I am redirected to the fxtm (forex time) site stating "thank you for registering here are your login details" - this
gangsta1
Added topic AUDCAD & AUDNZD data pre 2007?
Is this data available, I have downloaded all timeframes multiple times in mt4 but cannot get data before then, is this normal? Alpari UK is the broker I am using
gangsta1
Added topic Tick Data causing late entry (1 bars late)
I am testing initially with open prices only as my EA only uses open of bars and indicators. Now when I test results from open prices only testing on every tick I get the exact same entries and results which is great. The EA does not rely on scalping
gangsta1
Added topic Tick Data Testing 99% modelling quality vs metaquotes 90% modelling quality
So I am testing my EA with the EXACT same parameters on the d1 timeframe and comparing 90% modelling quality using data from metquotes (history center) with 99% modelling quality using tick data from Dukascopy. I would have thought that the tick
gangsta1
Added topic Auto detect GMT offset?
I have read through the threads in the forum which seem to be outdated and not have an ideal solution. Is there a way to auto detect the difference between broker time and GMT without the user needing to input a GMT offset? Currently I use code that
gangsta1
Added topic Feedback on my EA 12 year backtest report please
H1 EURUSD FROM 2001 with 2% risk per trade. I am looking at the areas that need improving. Test has been confirmed with a tick test (EA uses open prices)
gangsta1
Added topic Max v.s Relative DrawDown - Which has more significance for you?
Hi, When testing EA's, are you more concerned about the max or relative drawdown, perhaps both? I think max drawdown is more important as this determines the drop from the "balance" whereas relative determines the drop from the "equity". This way I
gangsta1
Added topic Only enter on first signal
I want my EA to only enter on the first signal, e.g. when the 3 MA crosses the 8 MA when both are above the 200 MA. At the moment the EA will do this on every cross above the 200 MA, but I would like to set it to ONLY enter on the first 3/8 cross
gangsta1
Added topic Optimization missing good results!?
I have been heavily optimizing my EA with genetic algorithm checked for faster speed. I found some excellent setting combinations but when I try to combine these with other settings those particular sets seem to be avoided by the optimization
gangsta1
Added topic Order Modify Error 130 Help Needed Please
For some reason when back testing with hundreds of trades over 10 years I get the occasional order modify error 130...The EA can have multiple orders open at the same time and when another order is open when the previous order is in profit it will
gangsta1
Added topic Order Modify Error 1 Help Please
I keep getting the error when closing out part of the lots of a trade and cannot seem to fix it, any ideas? It does not perform order modify on the sell order either which is strange! void BreakEven1() { if (BreakEvenType== 1 ) {
gangsta1
Added topic How to close ALL open orders?
I am looking for a way to close ALL open orders rather than just the current code I have which closes just 1 order: void IfOrderExists86() {      bool exists = false ;      for ( int i= OrdersTotal ()- 1 ; i