Thread: 10points 3.mq4
View Single Post
  #483 (permalink)  
Old 10-31-2006, 03:44 PM
mtaboneweb mtaboneweb is offline
Senior Member
 
Join Date: Sep 2006
Posts: 105
mtaboneweb is on a distinguished road
Terminator

I would also like to mention that I have started testing the Terminator EA with 5 different demo accounts. Each account is running H1 timeframes on all 4 currencies. For each account I have chosen to use a different indicator. Settings are as listed below...

extern double TakeProfit = 38; // Profit Goal for the latest order opened
extern double Lots = 0.01; // We start with this lots number
extern double StopLoss = 0; // StopLoss
extern double TrailingStop = 0;// Pips to trail the StopLoss

extern int MaxTrades=10; // Maximum number of orders to open
extern int Pips=18; // Distance in Pips from one order to another
extern int SecureProfit=10; // If profit made is bigger than SecureProfit we close the orders
extern int AccountProtection=1; // If one the account protection will be enabled, 0 is disabled
extern int AllSymbolsProtect=0; // if one will check profit from all symbols, if cero only this symbol
extern int OrderstoProtect=3; // Number of orders to enable the account protection
extern int ReverseCondition=0; // if one the desition to go long/short will be reversed
extern int StartYear=2005; // Year to start (only for backtest)
extern int StartMonth=1; // month to start (only for backtest)
extern int EndYear=2030; // Year to stop trading (backtest and live)
extern int EndMonth=12; // Month to stop trading (backtest and live)
//extern int EndHour=22;
//extern int EndMinute=30;
extern int mm=0; // if one the lots size will increase based on account size
extern int risk=0.01; // risk to calculate the lots size (only if mm is enabled)
extern int AccountisNormal=2; // Zero if account is not mini/micro
extern int MagicNumber=222777; // Magic number for the orders placed
extern int Manual=0; // If set to one then it will not open trades automatically
extern int OpenOrdersBasedOn=1; // Method to decide trades:0=MACD, 1=Pivot Point Time Zone, 2=Support and Resistance,
// 3=i_Trend RSI, 4=i_TrendRSIStoch, 5=i-TrendRSIStochMoneyFlowIndex
extern int TimeZone=16; // Time zone to calculate the pivots (not all the methods uses it)

OpenOrdersBasedOn is set to 1 on demo 1, 2 on demo 2, etc.

I have decided to take this EA into consideration because it is mostly based on the 10point3 EA but with different indicator choices. Part of my problem with the 10point3 is that it makes a judgement to buy/sell based on very little information. Plain and simple, if MACD is down from the previous bar the short and if it is up the long. More often that not, I see where it is buying when I would have sold and vice versa. I wanted to see if any of the other indicators in the Terminator EA put the orders in a better direction which should help.

Here are my results so far.

By the way, kenari05 has to keep his eyes closed so he doesn't benefit from this post since he wont share...
Attached Images
File Type: gif Terminator Option 1 - 2006-10-31.gif (4.6 KB, 146 views)
File Type: gif Terminator Option 2 - 2006-10-31.gif (4.6 KB, 133 views)
File Type: gif Terminator Option 3 - 2006-10-31.gif (4.5 KB, 124 views)
File Type: gif Terminator Option 4 - 2006-10-31.gif (4.6 KB, 126 views)
File Type: gif Terminator Option 5 - 2006-10-31.gif (4.5 KB, 123 views)

Last edited by mtaboneweb; 10-31-2006 at 03:46 PM.
Reply With Quote