Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Manual trading systems


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

 
 
LinkBack (1) Thread Tools
 
Old 08-06-2007, 12:09 PM
Member
 
Join Date: Oct 2006
Posts: 60
dav12028 is on a distinguished road
As the eurjpy was sitting I went over to the GBP to see how this system would fair, what a surprise! today's moves would have given me 200+ pips check it out!
I admit this might be rather an unusual case for the GU but you see what this system can handle! DD on this system should not be a great deal by the look of it. I believe an EA can outperform the STEINITZ EA, IMHO. Do we need to say more! By the looks of it, it seems that we can reach 400+ pips by the end of day
Attached Images
File Type: gif gbpusd1.GIF (17.0 KB, 331 views)

Last edited by dav12028; 08-06-2007 at 12:18 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 12:48 PM
Willis11of12's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 105
Willis11of12 is on a distinguished road
I thought I would be able to make an EA for this idea pretty easily until I tried to incude the custom indicators and couldn't figure out what I was doing wrong and then found this in the MQL4 Library under Custom Indicators:
"A group of functions used at producing of custom indicators. These functions cannot be used in experts and scripts." It looks like this could be harder than I thought. If I am misunderstanding this, someone please correct me and tell me how you have included custom indicators in an Expert Advisor. Thanks for the help!

Last edited by Willis11of12; 08-06-2007 at 12:50 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 12:56 PM
Member
 
Join Date: Oct 2006
Posts: 60
dav12028 is on a distinguished road
Quote:
Originally Posted by Willis11of12 View Post
I thought I would be able to make an EA for this idea pretty easily until I tried to incude the custom indicators and couldn't figure out what I was doing wrong and then found this in the MQL4 Library under Custom Indicators:
"A group of functions used at producing of custom indicators. These functions cannot be used in experts an d scripts." It looks like this could be harder than I thought. If I am misunderstanding this, someone please correct me and tell me how you have included custom indicators in an Expert Advisor. Thanks for the help!
Thanks, for the try. I'm pretty sure it will get done eventually, it's just too of good one to resist, the question is only if when and how and who will benefit from it, if you know what I mean.

Last edited by dav12028; 08-06-2007 at 12:58 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 01:09 PM
Willis11of12's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 105
Willis11of12 is on a distinguished road
Nevermind... I feel a little stupid about that last comment, as I think it was talking about the list of commands that are only used in making Custom Indicators and not EAs. I think I figured out how to include them. I'm looking at the CCI one right now, but I'm not sure what to put in for the buffer, as there are three options: 0, 1, or 2. I'll keep working on it.

Last edited by Willis11of12; 08-06-2007 at 01:15 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 01:14 PM
wookey's Avatar
Member
 
Join Date: May 2006
Location: Between Mars and Venus
Posts: 41
wookey is on a distinguished road
It's a trend following system, choppy time like that on my screenshot will take back most if not all of the profit. Cable will get back even more.

We should think of a filter, since +-10 pips obviously doesn't work good. It doesn't filter all choppy trades and often filters very good trades because trends always start from notrend.

Wookey
Attached Images
File Type: gif eurjpy.gif (13.5 KB, 326 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 01:18 PM
Member
 
Join Date: Oct 2006
Posts: 60
dav12028 is on a distinguished road
Quote:
Originally Posted by wookey View Post
It's a trend following system, choppy time like that on my screenshot will take back most if not all of the profit. Cable will get back even more.

We should think of a filter, since +-10 pips obviously doesn't work good. It doesn't filter all choppy trades and often filters very good trades because trends always start from notrend.

Wookey
Possibly we could try something like this: if 3 AO cycles in a row range in same x amount of pips we quit trading. Another note: Even the filters we already have in place now has gone quite far as we would not have taken quite a few of those trades that you see in that screenshot. And more, putting it in perspective you would not have been in and out 3 times on this screenshot, possibly only once according to the rules, if you check it from the start.

Last edited by dav12028; 08-06-2007 at 01:25 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 01:22 PM
Willis11of12's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 105
Willis11of12 is on a distinguished road
Dave, do you want the indicators being applied to the current bar or the previous bar? It sounds like you want them applied to the current bar, but I have had problems in the past with having some skewed results with using indicators on the current bar with backtesting. I guess we can test both when it's finished.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 01:23 PM
wookey's Avatar
Member
 
Join Date: May 2006
Location: Between Mars and Venus
Posts: 41
wookey is on a distinguished road
Quote:
Originally Posted by Willis11of12 View Post
Nevermind... I feel a little stupid about that last comment, as I think it was talking about the list of commands that I only used in making Custom Indicators and not EAs. I think I figured out how to include them. I'm looking at the CCI one right now, but I'm not sure what to put in for the buffer, as there are three options: 0, 1, or 2. I'll keep working on it.
Willis,

Try this:
FXSniper = iCustom(NULL, 0, "FX Sniper\'s T3 CCI", FX_Sniper_CCI_Period, FX_Sniper_T3_Period, FX_Sniper_b, 0, 1);

Wookey
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 01:31 PM
Member
 
Join Date: Oct 2006
Posts: 60
dav12028 is on a distinguished road
Quote:
Originally Posted by wookey View Post
It's a trend following system, choppy time like that on my screenshot will take back most if not all of the profit. Cable will get back even more.
Wookey
I would call it anything but a "trend following system", if you'd agree with me on that. The filters already in place do a pretty good job of keeping you out of most of the choppy times, but I admit it needs a little more tightening.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-06-2007, 01:34 PM
Member
 
Join Date: Oct 2006
Posts: 60
dav12028 is on a distinguished road
Quote:
Originally Posted by Willis11of12 View Post
Dave, do you want the indicators being applied to the current bar or the previous bar? It sounds like you want them applied to the current bar, but I have had problems in the past with having some skewed results with using indicators on the current bar with backtesting. I guess we can test both when it's finished.
Willis you nailed it, this will probably be the most sensitive point where the EA will have issues, but as you suggested we should be able to test both. I can well see that we will get 2 different sets of results, it will be interesting.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 

Bookmarks

Tags
scalping
Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/manual-trading-systems/8960-eurjpy-out-scalping.html
Posted By For Type Date
Eurjpy In and Out Scalping. by Forex trading This thread Refback 10-12-2007 11:47 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Which broker for scalping ... GUSDINSALVOFOREX Metatrader brokers 137 07-07-2008 12:32 PM
Scalping newdigital Expert Advisors - Metatrader 4 14 11-12-2007 05:40 PM
Scalping... Again!! Maji Metatrader 4 4 05-30-2006 01:27 AM


All times are GMT. The time now is 02:46 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.