dazler sar-ma (profitable in backtest!)
  #1 (permalink)  
Old 06-14-2006, 09:50 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default dazler sar-ma (profitable in backtest!)

This cool system is originated from dazler, who asked me to code in metatrader expert advisor for free. Haven't done forward testing yet, but backtesting result from 2003 looks real good. I do believe the result can be replicated in forward testing. Enjoy!

Quote:
Originally Posted by dazler
buy
close> sar
cross moving ave 10 and 21
close > mov ave 50

sell
close< mov ave 50

thats it. no stop no t/profit.
Balance



Report
Attached Files
File Type: mq4 dazler sarma.mq4 (15.6 KB, 139 views)
EA Shark +1064% Return
Stock Market Crash? No Problem!
We Are Making Profits As Usual. More Info
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #2 (permalink)  
Old 06-15-2006, 02:20 AM
Freshman
 
Join Date: Jun 2006
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
dazler is on a distinguished road
Send a message via MSN to dazler
Default

thanks scorpion
WOW here is a lot of code in this EA.
the above test is in what time frame?
thanks
dazler
Reply With Quote
  #3 (permalink)  
Old 06-15-2006, 07:24 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

I tested it in 1H on "open prices" model. You might need to check "Recalculate" first.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #4 (permalink)  
Old 06-19-2006, 06:31 PM
Sophomore
 
Join Date: Jun 2005
Posts: 48
Thanks: 0
Thanked 0 Times in 0 Posts
Dave77 is a jewel in the roughDave77 is a jewel in the roughDave77 is a jewel in the roughDave77 is a jewel in the rough
Thumbs down

When will the world realize that these backtestings are worthless?? If anybody has an ea, they should forward test it for at least a week to see if it has any remote possibility of working in real life.

I have tested and wasted my time on so many EA's by backtesting which showed good on backtesting, but in forward testing they lose money. I wish we would all unite and force Meta Group to come out with a good backtester that really works and you can depend on it. MT4 is no better than the MT3 backtester for reliable results. We need to stop kidding ourselves over this messed up backtester. I am astounded that the programmers in these forums have not created a reliable backtester yet.

Dave
<><
Reply With Quote
  #5 (permalink)  
Old 06-20-2006, 09:09 AM
Freshman
 
Join Date: Jun 2006
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
dazler is on a distinguished road
Send a message via MSN to dazler
Default

well dave, im forward testing it now and 3 out 4 in profit so far. sounds like u need to start the ball rolling doesnt it.....
but backtesting is not all useless, some signals have been taken on the wrong set up, so its good to have a look.
Reply With Quote
  #6 (permalink)  
Old 06-20-2006, 11:41 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

You're right Dave. However, you have to realise that the main problem is not really within the backtester but the ticks data. Unlike stock data, forex data is often proprietary after going thru series of proprietary filters, says Olsen's or Tenfore's. These forex ticks ain't cheap; 3 months worth of ticks cost as much as $600, 1 year costs around $2,400. You want a reliable tester, you gotta buy (or even license) these ticks data "for your own personal use only". You might say i'm kidding, but I've spent a fortune to buy these ticks.

Ask yourself, just one question, are you willing to spend more than $5,000 on a real good backtester? Remember nobody (MetaQuotes, brokers, or "these forums") can afford to pay this for you "and others".
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #7 (permalink)  
Old 06-22-2006, 11:36 AM
Freshman
 
Join Date: Jun 2006
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
dazler is on a distinguished road
Send a message via MSN to dazler
Default

ok forward testing is going good in profit, but as the rules as above are not taking trades as theey come. or hold on too trades long after the cross of ma50 stop.
ur code so complex that im still look in to it. i was hope for a simple system.
if the close =
close> sar
cross moving ave 10 and 21
close > mov ave 50
then go long or short on the next bar (open) can we do this?
and sell
close< mov ave 50
then stop on the next bar (open).
i did try to change the
IsBuy = (Bid > sar_0 && ma1_1 <= ma2_1 && ma1_0 > ma2_0 && Bid > ma3_0);
IsSell = (Bid < sar_0 && ma1_1 >= ma2_1 && ma1_0 < ma2_0 && Bid < ma3_0);
IsCloseBought = bid<ma3_0;
IsCloseSold = bid>ma_3;
thanks for ur help this EA is in profit and i mite be stuffing it up, but would like to see the rules played out as they r in a 1H chart.
cheers
Reply With Quote
  #8 (permalink)  
Old 06-22-2006, 03:00 PM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Yeah the code is complex coz the expert can running flawlessly on multiple charts and pairs. And, it's actually a high-powered expert that fully support four types of [trailing] stop loss, three types of execution interval (tick-by-tick, chart, x minute), and a set of powerful extended functions. (it's all fact, no show-off)

Quote:
Originally Posted by dazler
IsCloseBought = bid<ma3_0;
IsCloseSold = bid>ma_3;
That will close the Long when price closes lower than MA50 and close the Short when higher than MA50. But the code should be:

IsCloseBought = Bid<ma3_0;
IsCloseSold = Bid>ma3_0;
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
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



All times are GMT. The time now is 06:57 AM.
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