#11 (permalink)  
Old 11-03-2006, 05:20 AM
Freshman
 
Join Date: Jun 2006
Posts: 25
Thanks: 0
Thanked 51 Times in 3 Posts
richx7 is on a distinguished road
Default

Backtesting gives exit entry at the same time. I assume live trading with Smart Delay prevents this.

There are many hidden features that look interesting but are not explained :
TS_MODE
TS_MODE_HALF_VOLATILITY
TS_MODE_BREAKOUT
TS_MODE_BREAKEVEN
Lots_PCT
Breakeven_Pips

This EA looks like it has great potentail. Thanks for the effort.
Reply With Quote
The following users have thanked richx7 for useful post above:
  #12 (permalink)  
Old 11-03-2006, 11:08 PM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,974
Thanks: 119
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

Lots_PCT means Lots Percentage. If you want to trade 10% of your account, put 10. It's pretty good for compound. You'll have to switch Use_Lots_PCT (??) to true.

Well, the TS_Mode is where you set the type of trailing stop. There're many like pip-based, ATR based, Previous High or Low (Breakout), etc. It's easy if you want to add custom trailing stop like maybe another HMA.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #13 (permalink)  
Old 11-04-2006, 09:19 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,974
Thanks: 119
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

Right, the EA works with the provided indicator.

I've observed the HMA, it repaints the past bar! Previous bar obviously shown Red, but a moment later it was changed to Blue. Look closely at the backtesting, you'll see there're some orders executed in the middle of Blue or Red. At that time, the color was changing, but the next bar HMA indicator covered it up. That's one tricky indicator...
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #14 (permalink)  
Old 11-04-2006, 11:52 AM
bradman's Avatar
Freshman
 
Join Date: Oct 2006
Posts: 23
Thanks: 1
Thanked 0 Times in 0 Posts
bradman is on a distinguished road
Default

I ended up having 2 hours free last night, so i put the EA onto M1.

It didn't open any trades at all even though every 15 minutes the indicator changed from red to blue etc.

I'll try it again on Monday, with the default settings.Other than that, i don't know what caused it to do nothing. There was at least 15 pips up and down regularly over the 4 majors i had it on, and the Lots was set low so it should have traded.

RichX7. Your modelling quality was n/a it says.
You should only trust 90% , and then that is wrong 10% of the time
Reply With Quote
  #15 (permalink)  
Old 11-04-2006, 12:45 PM
bradman's Avatar
Freshman
 
Join Date: Oct 2006
Posts: 23
Thanks: 1
Thanked 0 Times in 0 Posts
bradman is on a distinguished road
Default

ok.

i wasn't using Scorpion's Hull indicator, just the Russian Colour one.

Tried to strategy test and it said i needed the indicator.
should work fine on Monday.

with 59% modelling quality, i just don't believe what the results say.
Reply With Quote
  #16 (permalink)  
Old 11-06-2006, 12:39 AM
bradman's Avatar
Freshman
 
Join Date: Oct 2006
Posts: 23
Thanks: 1
Thanked 0 Times in 0 Posts
bradman is on a distinguished road
Default

Hi Scorpion,

There seems to be some anomalies with the EA as such.

I've been testing it on M1 and M5 just to make sure it trades.

I take it 'extra pips' means how many extra pips it has to move after a colour change before it trades...

anyway, i set that to 0 and 1 and ran two versions.

Most of the time it seems to trade on colour change.
But it sold three times in a row once, not buying when it went blue, even though there were about 3-4 pips upwards movement.
Now the indicator is still blue, and it has cancelled the buy for no reason and has initiated a sell.

Both indicator and EA are set to the same inputs.

Have you any idea what is happening?
Reply With Quote
  #17 (permalink)  
Old 11-06-2006, 01:11 AM
bradman's Avatar
Freshman
 
Join Date: Oct 2006
Posts: 23
Thanks: 1
Thanked 0 Times in 0 Posts
bradman is on a distinguished road
Default

screenshot of live demo running

wierd entry points, sometimes no entry points.
Attached Files
File Type: doc book 1.doc (94.5 KB, 405 views)
Shark EA Ultimate
Actual Profits on Live Account: +1064%
Since Jan 2007. View Live Statements.
Reply With Quote
  #18 (permalink)  
Old 11-06-2006, 09:59 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,974
Thanks: 119
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

There's an explanation that an order is executed in the middle of blue or red. At that time, the color was changing, but the next bar HMA indicator covered it up. That's because the HMA repaints the color of previous bar.

You see that orders were executed two bars late. In fact, it's executed at the opening of second bar. To realize a color change, the first bar must complete first; it's because HMA is calculated on Close prices.

Extra_Pips should be set to 0. The HMA of current bar must deviate at least Extra_Pips from the HMA of previous bar. So Extra_Pips = 1 might equal to 5 to 10 points of price.

Ok, everything points to the fact HMA covers up many short-term color changes. But let's observe this, when you see a changing color in the current bar, note the color and time. Look for the bar when you come back a few bars later.

I'll modify the code when this bug is confirmed. Keep the EA running...
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #19 (permalink)  
Old 11-06-2006, 04:13 PM
Freshman
 
Join Date: Nov 2006
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
trevman is on a distinguished road
Default

i was looking at the HMA a while ago but i was looking at selling when a new candle is formed under the HMA and buying when its formed above. still didnt seem to do anything impressive
Reply With Quote
Question
  #20 (permalink)  
Old 12-29-2006, 04:08 AM
bnf bnf is offline
Freshman
 
Join Date: Dec 2006
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
bnf is on a distinguished road
Default Question

Quote:
Originally Posted by scorpion View Post
The system was posted by bradman when he needed this system coded.

The system is simple. Long when HMA trend is up, and short when HMA trend is down.

Attached is the EA, automated script for metatrader 4, and indicator of this system. You must install both of them.

This expert advisor features:
  • You can trade multiple charts or currencies at the same time
  • Stop loss, take profit, breakeven
  • Trailing stop
  • Configurable settings
  • Many hidden features. (Advance users, put "extern" to reveal them)
How to use:
  • To enable stop loss, set SL_Mode = 1, then you configure SL to suit your style.
  • To enable trailing stop, set TS_Mode = 1. Trailing stop will hit when profit is x pips as specified in TS_Trigger.
  • Configure the indicator by settting HMA_Period and HMA_Mode.
Cheers!
Hello Scorpion,

This system looks very attractive to me! I use 5 min charts on Euro/USD, USD/JPY. Do you think I can use this system on it? By reading all related articles, it doesn't say anything about when to enter and exit.
Should I only follow the sing of changing the colours?

I am able to manage in showing HMA on charts, but I cannot show HMA Trend EA on charts. Does it need to be shown on the charts as well?

Looking forward to hearing from you soon.

Thank you.
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
Trading E-Books Download jgrimney Tutorials, Tips & Tricks 47 09-18-2008 08:19 AM
Hull Moving Average EA bradman General Trading Talk 42 04-02-2008 02:19 PM
ANALYTICAL SOFTWARE for Traders (March 2006) max777 Classified Ads 2 08-20-2007 10:42 PM
asc trend system blake123 Trading Systems 9 11-16-2006 05:13 AM
ANALYTICAL SOFTWARE for Traders (June 2006) max777 Classified Ads 0 06-18-2006 11:32 PM


All times are GMT. The time now is 02:14 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