35117153
35117153
Friends

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

35117153
Added topic How to use previous optimization results as input for new optimization
I have the XML file containing the results of an optimization I ran earlier, I want to use the input variables of say the top 100 passes of those results and run a new optimization that only uses these 100 variables
35117153
Added topic Only sending relevant ticks to EA for backtesting
I am currently backtesting my EA using 1 minute OHLC but since the EA trades on a higher time frame, there are a lot of "unnecessary" ticks that the EA is being run on slowing down the optimisation. What I would like to achieve is to send every
35117153
Added topic Is there a way to use 1 HOUR OHLC modelling while backtesting
From what I understand the current modelling of price data using 1 minute OHLC, sends 4 ticks (Open,High,Low,Close) of the 1 minute bar to the EA.  Is there a way to send these 4 ticks from another time frame, for example the OHLC of 1 hour bars
35117153
Added topic How to change global variable value from inside function
How do I change the value of a global variable from inside a function. I tried simply  Globalvar1 = 1 ; void changing.globalvar1() { Globalvar1 = (Globalvar1* 2 ); } But this does not work. How do I achieve this? Thank you
35117153
Added topic Using relative drawdown instead of maximal drawdown while optimizing
The default option to optimize using "Drawdown min" uses "Equity drawdown maximal". I would like to code a custom criteria which uses "Equity drawdown relative" to optimize. I looked up the OnTester documentation but couldn't really understand it