- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Jul 13, 2009A little more 'NEAT' stuff. url url
My most recent advancements into machine learning
-
Ronald Raygun replied Jul 13, 2009Because I'm trying to create an insane backtest (read: greater than 189 billion). Mainly for bragging rights. If a newbie decides to show a backtest saying his/her/it's EA is amazing, I'll show my backtest.
2009.03.11 15:41:15Tester memory handler: tester stopped because not enough memory
-
Ronald Raygun replied Jul 12, 2009The EA hasn't changed since this system was first introduced...
4H Box Breakout
-
Ronald Raygun replied Jul 12, 2009Make sure the box marked "Visual mode" is checked.
visualisation of strategy tester
-
Ronald Raygun replied Jul 11, 2009It's possible, but the EA will have to know the "Name" of the object. That's where it gets tricky
Question
-
Ronald Raygun replied Jul 11, 2009Well, you can do two things... Increase your confidence Find another system. I did both.
Best scalping strategy
-
Ronald Raygun replied Jul 11, 2009Scalping as I define it: Taking advantage of high probability repeated small inconsistencies or patterns in a given market. By my definition, a scalp setup is a repeated setup caused by an inconsistency in the market. There could be as much as a ...
Best scalping strategy
-
Ronald Raygun replied Jul 11, 2009Just cycle through all the orders. Total = OrdersTotal() TradeCount = 0; for (int i = 1; i < Total; i++) { OrderSelect(i, BY_POS, MORE_TRADES) { if(OrderMagicNumber == [Put the magic number here] && (OrderType() == OP_BUY || OrderType() == OP_SELL) ...
Making sure only one trade is open?
-
Ronald Raygun replied Jul 11, 2009This is exactly what I was looking for. image Thanks for the help 7bit and mystified.
I can't believe I'm doing this.
-
Ronald Raygun replied Jul 11, 2009Yep. I don't bother using the midpoints between round numbers. This is more a supplemental strategy to my other ones. For a 4 digit yen pair: xx0.00 For a 4 digit non-yen pair: x.x000 For a 5 digit yen pair: xx0.000 For a 5 digit non-yen pair: ...
Best scalping strategy
-
Ronald Raygun replied Jul 10, 2009Simple scalping strategy. Get any price which ends in 000 (4 digit), or 0000 (5 digit). Place pending order above current price and below current price at the nearest psych points. TP/SL of 10 pips.
Best scalping strategy
-
Ronald Raygun replied Jul 10, 2009I'm bored. Waiting for the P&L to come back from risk.
AIs vs Human Traders
-
Ronald Raygun replied Jul 10, 2009That's the current reality Jhig, and equilibrium, I do believe that machines will eventually surpass humans. But that doesn't mean human traders will be obsolete. Look at what I currently do, I don't actually place trades myself anymore. I have a ...
AIs vs Human Traders
-
Ronald Raygun replied Jul 10, 2009Let's look at the bigger picture... What ultimately drives the markets? Supply and demand. Look at the forex market for example, what is the driving force behind price movements? Is it the banks? Is it the hedge funds? No. It's your plain vanilla ...
AIs vs Human Traders
-
Ronald Raygun replied Jul 10, 2009I am definitely running into a compounding problem Rabid. I have a section in the code which limits the lot size, and I have been able to run the EA through all 6 months. by the end of month 3, the EA is around $150 billion. I figure at that rate of ...
2009.03.11 15:41:15Tester memory handler: tester stopped because not enough memory
-
Ronald Raygun replied Jul 10, 2009The EA isn't complex except in the sense that the orders become so large that they are broken down into 9999-lot sized trades. The lot requirements can get pretty high, and right before these memory errors pop up, the EA opening and maintaining as ...
2009.03.11 15:41:15Tester memory handler: tester stopped because not enough memory
-
Ronald Raygun replied Jul 10, 2009It's the first backtest after I open it. I guess my question is: Where is the expert log file? I'm going to change it to "read-only" and hopefully that fixes my problem.
2009.03.11 15:41:15Tester memory handler: tester stopped because not enough memory
-
Ronald Raygun replied Jul 9, 2009Blackmage: The difference between today and a few years ago is I now have OpenCL and CUDA. In other words, I'm using graphics cards in addition to my CPU. So, I get far more performance than with hardware from pre 2007. I'm seeing easily a 10-fold ...
My most recent advancements into machine learning
-
Ronald Raygun replied Jul 9, 2009That doesn't help me... Take this backtest for example: url It took 3 days, 16GB of ram, a 3 ghz computer, and an extra 60GB in a paging file, and I still couldn't finish all 6 months of the backtest. The best solution as I can see it, is to just ...
2009.03.11 15:41:15Tester memory handler: tester stopped because not enough memory