- Search Metals Mine
-
Ronald Raygun replied Jul 8, 2008Figure an average 400 on EURUSD, 1000+ on GBPJPY, and 700 on Cable. Then a smattering of pips across other pairs.
Net pips / month / pair?
-
Ronald Raygun replied Jul 8, 2008The trade management EAs out there are: Swiss Army ManageTP(Search is your friend!)
Is there a money management EA??
-
Ronald Raygun replied Jul 8, 2008I would recommend using a larger test period. A good ratio would probably be 20:1. You use the previous 20 periods to predict the 21st period.
optimization in Strategy tester
-
Ronald Raygun replied Jul 8, 2008Just to add on: Metatrader's Backtesting system is incredibly inaccurate when predicting profitability. Instead, use it in visual mode to determine order entry accuracy.
AshFX Daily
-
Ronald Raygun replied Jul 8, 2008MagicNumber: The unique trade identification number for this EA. This allows the EA to figure out which trades it is supposed to manage. SignalMail: If you set up metatrader for e-mail, it will send e-mails to you whenever a trade occurs. ...
AshFX Daily
-
Ronald Raygun replied Jul 8, 2008A general rule of thumb I use when optimizing is to use a method called "rolling optimization" Example: I have 10 years of tick data. I take the first year--optimize heavily for that--and run it against the second year. I take the second ...
optimization in Strategy tester
-
Ronald Raygun replied Jul 8, 2008Thanks for that catch. I went over the code again and it's all correct. No updates needed.
AshFX Daily
-
Ronald Raygun replied Jul 8, 2008Error 130 means that the new stoploss caused by the modify is too tight by the broker standard. Generally applies if your trail stop is less than 10 pips.
Trailing stop has error 130
-
Ronald Raygun replied Jul 8, 2008It's posted in the public domain. That EA's free of charge.
need a programmer to program an alert for double tops and double bottoms
-
Ronald Raygun replied Jul 7, 2008Here's my existing loop: //Check position bool IsTrade = False; for (int i = 0; i < Total; i ++) { OrderSelect(i, SELECT_BY_POS, MODE_TRADES); if(OrderType() <= OP_SELL && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) { IsTrade = ...
Managing multiple trades.
-
Ronald Raygun replied Jul 7, 2008Is TP only at 22.55? What happens if the price touches both orders?
Rankor Breakout
-
Ronald Raygun replied Jul 7, 2008This is the stochastic cross EA you were asking about.
need a programmer to program an alert for double tops and double bottoms
-
Ronald Raygun replied Jul 6, 2008Why thank you. Yes today is my birthday. Now that I'm 18, I can: Sue Be sued Enter into legally binding contracts Vote Drive after midnight etc.
AshFX Daily
-
Ronald Raygun replied Jul 6, 2008Download the file into the metatrader/templates folder. Open metatrader Right click on the chart Click on templates
AshFX Daily
-
Ronald Raygun replied Jul 6, 2008For an EA...(don't have the reference material in front of me, but it'd be something like this) double barcount; double LastHigh = iHigh(NULL, 0, 1); double LastLow = iLow(NULL, 0, 1); if (Bars != barcount) { Alert("The last bar had a high of ", ...
last closed bar top
-
Ronald Raygun replied Jul 6, 2008That's the point. This tKimble system is based on a stop and reverse system. The stops are put in place so that the system can try to determine the market's direction. Theoretically, it will keep reversing trades until the market shoots off in a ...
Part Time Wealth Building Trading System - Weekly Scalping
-
Ronald Raygun replied Jul 6, 2008Don't restrict yourself to one chart. Put the ea on another chart, and forget about it.
Script wanted