#31 (permalink)  
Old 10-03-2006, 11:35 PM
AQUILEZ's Avatar
Sophomore
 
Join Date: Jul 2006
Posts: 91
Thanks: 2
Thanked 20 Times in 9 Posts
AQUILEZ will become famous soon enough
Default

The proprietor who is Alejandro Galindo
of the cactus.com, has The code source but you don't need it. the options that you have without the source are infinite, now if you can programme why you want a someone system when you can make one proper to your needs.

Regards
Aquilez Baeza
Reply With Quote
DLMv1.4
  #32 (permalink)  
Old 10-04-2006, 12:47 AM
AQUILEZ's Avatar
Sophomore
 
Join Date: Jul 2006
Posts: 91
Thanks: 2
Thanked 20 Times in 9 Posts
AQUILEZ will become famous soon enough
Default DLMv1.4

Here is the DLMv1.4 which is in the contest there is only one option but you can have a idea or make one proper to your needs

Regards
Aquilez Baeza
Attached Files
File Type: mq4 DLMv1.4-MQL4Contest.mq4 (16.7 KB, 718 views)
Shark EA Ultimate
Actual Profits on Live Account: +975%
Since Jan 2007. View Live Statements.

Last edited by AQUILEZ : 10-04-2006 at 12:50 AM.
Reply With Quote
  #33 (permalink)  
Old 10-04-2006, 04:39 AM
Freshman
 
Join Date: Sep 2006
Posts: 16
Thanks: 0
Thanked 1 Time in 1 Post
alpin is on a distinguished road
Default

Hi AQUILEZ

Would you give me the option list for DMLv1.3, because I just knew 5 of them (2,6,11,12,13) all from you. If I'm using option 12, what is the best time frame? And I've running DLMv1.4 on USDJPY TF H4 since yesterday and the result is negatif, why?

Thanks bro. I'll wait for your reply.
Reply With Quote
DLMv1.3
  #34 (permalink)  
Old 10-06-2006, 02:17 AM
AQUILEZ's Avatar
Sophomore
 
Join Date: Jul 2006
Posts: 91
Thanks: 2
Thanked 20 Times in 9 Posts
AQUILEZ will become famous soon enough
Default DLMv1.3

To run this expert you will need MetaTrader 4 platform and the Custom indicators

"Support and Resistance.mq4",
"Pivot Lines Timezone.mq4",
"BrainTrend1Stop",
"RSI 2MA".
TrendManager
FXFish


The parameters for the expert are:


Code = 1000001; // Password to use the expert, the default value expires 1 month after released.

Account = 1000001; // MetaTrader 4 Account number, the default value expires 1 month after released.

TakeProfit = 40; // Profit Goal for orders opened

Lots = 0.01; // We start with this lots number, 0.01 for micro accounts and 0.1 for mini and normal accounts

StopLoss = 0; // StopLoss

TrailingStop = 20;
// Pips to trail the StopLoss


MaxTrades=10 // Maximum number of orders to open (from 0.1 the lots will be 0.1, 0.2, 0.4, 0.8, 1.6, 3.2, 6.4, 12.8, 25.6, 51.2)

Pips=15 // Distance in Pips from one order to another


SecureProfitProtection=False; // IF true the SecureProtection subsystem will start working

SecureProfit=20 // If profit made is bigger than SecureProfit we close the orders

OrderstoProtect=3 // Number of orders to enable the account protection

AllSymbolsProtect=0
// if one will check profit from all symbols, if cero only this symbol


EquityProtection=True; // if true, then the expert will protect the account equity to the percent specified

AccountEquityPercentProtection=65; // percent of the account to protect on a set of trades


AccountMoneyProtection=False;
// if true the expert will protect the account based on an amount specified

AccountMoneyProtectionValue=3000.00;
// close all orders when this amount was lost in the account


NewsFileProtection=True; // if true the expert will read the News File to stop trading on the dates/times specified on that file. If you set this parameter to true, then you must download the file DLMv1.2-NonTradingDays.csv and copy it to the folders "Metatrader 4files" and "Metatrader 4testerfiles"

NewsFileSize=124;
// number of lines in the New file

BrokersTZ=2; // This value must be set to the Brokers data timezone, for example for FXDD is 2, for Interbank is 0, you must search what data time frame has your broker

NewsFileTZ=-5;
// This is the time zone of the dates/times in the News file, by default ill be creating this file in NewYork time EST (GMT-5)


TradeOnFriday=False;
// to save lines on the News file, you can set this parameter to true and the expert will close all orders and stop trading at friday (brokers time)


OrdersTimeAlive=0;
// in seconds, this parameter is if you want to set a specific time of live to all the orders set


ReverseCondition=0 // if one the desition to go long/short will be reversed

SetLimitOrders=True;
// if true, instead open market orders it will open limit orders (from 2nd order, the first order opened is a market order)


StartYear=2005
// Year to start (only for backtest)

StartMonth=1 // month to start (only for backtest)

EndYear=2006
// Year to stop trading (backtest and live)

EndMonth=12 // Month to stop trading (backtest and live)

mm=0 // if one the lots size will increase based on account size

risk=12 // risk to calculate the lots size (only if mm is enabled)

AccountisNormal=0 // Cero if account is mini/micro

MagicNumber=222777 // Magic number for the orders placed

Manual=0 // If set to one then it will not open trades automatically


OpenOrdersBasedOn=2
// Method to decide if we start long or short.
The actual values for this parameter are:
0. MACD
1. Pivot price level
2. Support/Resistance levels (best results on all symbols)
3. PSAR, if (PSAR)<= Low[1] AND PSAR > High[0]) start short, if (PSQR >= High[1] && PSAR < Low[0] ) start long
4. BrainTrend1Stop, if (short signal) start short, if (long signal) start long
5. Open only Sell orders
6. Open only Buy orders
7. RSI 2MA, if(ma1b4>=ma2b4 && ma1<ma2) start short, if(ma1b4<=ma2b4 && ma1>ma2) start long
8. SMA, if(Open[1]>ma && Close[1]<ma) start short, if(Open[1]<ma && Close[1]>ma) start long
9. CCI, if(ccib4>=0 && cci<0) start short, if(ccib4<=0 && cci>0) start long
10. Based on Bulls and Bears (if bull+bear<0 we start short, if bull+bear>0 we start long)

* 11 - OpenOrdersBasedOnTrendManager
SELL if red bellow price
BUY if blue above price
* 12 - OpenOrdersBasedOnFXFish
SELL if indicator bellow cero line
BUY if indicator above cero line
* 13 - OpenOrdersBasedOnOpenClose
SELL if previous bar open-close > 10 pips
BUY if previous bar close-open > 10 pips


TimeZone=16 // Time zone to calculate the pivots (not all the methods uses it)

ArrowsColor=Black; // this is the color for the arrows displayed on the chart
Attached Files
File Type: mq4 BrainTrend1Stop.mq4 (3.1 KB, 498 views)
File Type: mq4 Pivot Lines Timezone.mq4 (15.4 KB, 570 views)
File Type: mq4 RSI 2MA.mq4 (4.7 KB, 546 views)
File Type: mq4 Support and Resistance.mq4 (1.5 KB, 547 views)
File Type: mq4 FX_FISH.mq4 (3.8 KB, 531 views)
File Type: mq4 Trend Manager.mq4 (2.0 KB, 588 views)

Last edited by AQUILEZ : 10-06-2006 at 02:50 AM.
Reply With Quote
  #35 (permalink)  
Old 10-06-2006, 05:22 AM
Freshman
 
Join Date: Sep 2006
Posts: 16
Thanks: 0
Thanked 1 Time in 1 Post
alpin is on a distinguished road
Default

Thank you AQUILEZ and please send me my best regards to your friend Alejandro Galindo for making such an amazing EA.
Reply With Quote
  #36 (permalink)  
Old 10-10-2006, 10:05 AM
Freshman
 
Join Date: Oct 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
hotstorm is on a distinguished road
Default

This EA is looking promising. I hope its profit is not made on "no stop loss" principle like some other that looked profitable, but in the end I found out they were not using stop loss and kept the order opened till it got some profit.

What is the best time frame to use this EA?

Thanks!
Reply With Quote
  #37 (permalink)  
Old 10-10-2006, 10:56 AM
Freshman
 
Join Date: Oct 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
hotstorm is on a distinguished road
Default

Quote:
Originally Posted by alpin
Hi AQUILEZ

Would you give me the option list for DMLv1.3, because I just knew 5 of them (2,6,11,12,13) all from you. If I'm using option 12, what is the best time frame? And I've running DLMv1.4 on USDJPY TF H4 since yesterday and the result is negatif, why?

Thanks bro. I'll wait for your reply.
I tried a back test on ver. 1.4 and it is straight line down. Anybody has settings that makes this version do any good trades? Thanks!
Reply With Quote
  #38 (permalink)  
Old 10-10-2006, 08:59 PM
AQUILEZ's Avatar
Sophomore
 
Join Date: Jul 2006
Posts: 91
Thanks: 2
Thanked 20 Times in 9 Posts
AQUILEZ will become famous soon enough
Default

the best way of knowing what is the best time frame it is doing tests
the options are infinite this EA relies on with a stop loss abaliable to your the cases that not understanding the system of the Ea should cause large losses
this is not a common EA that bets in only one deal, the idea is very clear to have 1 opportunity in 10 to gain the idea of entering with few lots is because the general balance
in other words if you want to start with a lot these moderate of an account of 100,000.00 or more if you understand the idea of being able to support your margin without probleas and to cover 150 points against you that is the idea of EA but if you are hoping that in only one deal you should extract the whole month gains for sure these is the wrong EA for you
you have to start thinking that a lot on the market they are equivalent to 100,000.00 Dls the question is the following. Can you cover more than 100,000.00 without problems?

Note:
The most common mistake it is start with a lot or more than a lot in small accounts (says $5,000.00)
Options to determinate stop loss are not limited Option Acc Money protecction 65 by default but parameter can easily change to protect the account to diferent %

Last edited by AQUILEZ : 10-10-2006 at 09:01 PM.
Reply With Quote
  #39 (permalink)  
Old 10-16-2006, 02:42 PM
Freshman
 
Join Date: Oct 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
dazsul is on a distinguished road
Default

Hi AQUILEZ,

Is the function of the "Pivot Lines Timezone.mq4" to adjust a server time to reflect the time you want your pivot lines to be calculated from? Or have a missed the point completely?
Reply With Quote
  #40 (permalink)  
Old 10-18-2006, 06:08 AM
AQUILEZ's Avatar
Sophomore
 
Join Date: Jul 2006
Posts: 91
Thanks: 2
Thanked 20 Times in 9 Posts
AQUILEZ will become famous soon enough
Default

This function works in accordance with the time of your broker

The parameters for the expert

BrokersTZ=2; // This value must be set to the Brokers data timezone, for example for FXDD is 2, for Interbank is 0, you must search what data time frame has your broker

TimeZone=16 // Time zone to calculate the pivots (not all the methods uses it)

Best Regards
Aquilez Baeza

Last edited by AQUILEZ : 10-18-2006 at 06:26 AM.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Ea swirly MetaTrader and ZeroCode 3 08-29-2008 01:39 PM
Fisher Transform Dick Trading Systems 82 08-24-2008 12:03 AM
EA needed renasdad MetaTrader and ZeroCode 8 03-22-2007 10:01 PM
Scorpion Need Help Convert EA Please txsundevil Trading Systems 2 09-28-2006 07:18 PM
Newbie looking for ea romper Trading Systems 3 09-05-2006 08:46 PM


All times are GMT. The time now is 09:35 PM.
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0

Registered members have access to special online forex currency trading tools, software, mt4 expert advisors and indicators. Register now

Main Menu

Economic Forecast