- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Jul 19, 2010Yeah.... that's a problem. Maybe the issue rfking2 mentioned earlier is happening here.
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010Okay. Delete old EA, put in new EA, download and import bar data ( url ) start again.
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010With the exception of the code change, the default settings should work already. I agree. That's the problem when you can't use the start function unfortunately.
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010Frowny face is adjusted in the common tab when you're setting up the EA. As for your settings, it looks like your TP is pretty small depending on the desired win rate, risk/reward, and success score. More likely than not, the optimizer EA couldn't ...
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010That is expected behavior. The EA is basically running on an infinite loop. Cycle count is the number of 100 ms intervals that have passed between the last tick and the present. The EA was running over the weekend it seems so it's expected that ...
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010Trickier. It's hard getting a reliable seamless set of tick data to test off of. One day's worth of tick data is pretty insignificant. You'd probably need one week minimum for marginally improved results.
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010I had the same problem and RangeBound showed me a very good solution: url
How to direct my EA entries to my website?
-
Ronald Raygun replied Jul 19, 2010I should probably elaborate how the backtesting and optimization work. There are three major steps the EA goes through: Run through all the bars in the backtesting period and write any trade data to a file. Read the file into a series of arrays ...
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010If ReverseTrades is set to false, the EA tests all trades with a SL setting of whatever SL you set. If ReverseTrades is set to true, the EA tests all trades with a TP setting of whatever TP you set. The optimization engine of this EA is a lot more ...
Old Dog with New Tricks
-
Ronald Raygun replied Jul 19, 2010You need three main things: MySQL database Apache server with support for PHP An MQL dll call which handles web-access Have them? Skype me (brynmawr114) and we'll go over it
How to direct my EA entries to my website?
-
Ronald Raygun replied Jul 18, 2010To download more bars: url Use this source: url I think you're right. It's mentioned here: ( url ). I wonder how I didn't have any trouble with this... If anyone is good with timezone math, I'm in the New York timezone (Eastern).
Old Dog with New Tricks
-
Ronald Raygun replied Jul 18, 2010Could you elaborate? The EA optimizer includes weekend gaps as well, I quite literally set it and mostly forget it.
Old Dog with New Tricks
-
Ronald Raygun replied Jul 18, 2010You could also post the indicator instead of stringing us out here. Private and free doesn't exist.
Need help coding an EA
-
Ronald Raygun replied Jul 18, 2010This EA is designed to optimize one trading system. There is very little flexibility here. Neural networks are designed to modify and adjust one trading system. There is more flexibility in the sense that all the inputs are adjusted for the output ...
Old Dog with New Tricks
-
Ronald Raygun replied Jul 18, 2010I'm always looking for inputs and new ideas for this. How should the weighting be done? Should the weight of each trade be calculated based on the number of bars between the trade entry and the present? As for using the weighting, how should I use ...
Old Dog with New Tricks
-
Ronald Raygun replied Jul 17, 2010As a followup, consider the number of bars you're backtesting against in terms of the time. E.G. 1440 bars is one trading day. There are roughly 20 trading days in a month and 200 in a year. 1.5 million 1M bars is approximately 5 years of data to ...
Old Dog with New Tricks
-
Ronald Raygun replied Jul 17, 2010Lower the bar count I guess. 1GB ram is pretty small IMO, the computer I have this EA running on has 32GB and is running 20 instances of this EA.
Old Dog with New Tricks
-
Ronald Raygun replied Jul 17, 2010Well... look at any of my [TD] EAs, there is a way to have the EA send information to your website. I can help you put it up sometime next week if you'd like.
How to direct my EA entries to my website?
-
Ronald Raygun replied Jul 17, 2010It's just two 'jumps'? Just use two Move-To-Breakeven scripts. This function takes various parameters and returns the stoploss price. double BreakEvenValue (bool Decision, int OrderTicketNum, int MoveStopTo, int MoveStopwhenPrice) { //Select the ...
Jump Stop
-
Ronald Raygun replied Jul 17, 2010Why not use myfxbook? If you don't want to use that, your easiest bet would be to get your own website.
How to direct my EA entries to my website?