Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #141 (permalink)  
Old 08-22-2009, 05:25 AM
Junior Member
 
Join Date: Aug 2009
Posts: 4
-tj- is on a distinguished road
hmm.. iv looked at the coding and looks good and logic..

execpt i cant get a postive figure when testing.. keep gettn negative results and im using stock settings. I might try it my demo account see if i get any postive results..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #142 (permalink)  
Old 10-06-2009, 09:01 PM
Junior Member
 
Join Date: Oct 2009
Posts: 4
tomonariventures is on a distinguished road
Great ea

Quote:
Originally Posted by sfindlay View Post
Folks after much head scratching I have released a new, much improved version that so far I have only tested on USDJPY and EURUSD but it backtests really well back through the years which the other version didn't and definitely does NOT burn through your equity. The drawdown is very low on this one.

Attached is the USDJPY set file. Again it is a low volume high probability trader. I will continue to evolve this but would appreciate if anybody has the time to test it.

This version has the RSI added to it. It buys when the RSI is above 45, and sells when the RSI is below 52. Also I have added:
-a slow stochastic to act as a take profit, (but you can set the take profit manually if you want)
-a %WPR to either act as an emergency stop if the price is going down fast and
- a second %WPR take profit if the price is moving up really fast.

Play around with these as you can take the emergency stop loss off for example, and manually close.

There is an ordinary Stop Loss set by default at 200, if disaster strikes that is your safety net. It will only activate if it is needed to as the logical stoplosses and take profits should kick in first.

Please if you do test it consider others and upload your set files as you find a good fit for other currencies through your backtesting.
Sir: Could you please explain this system in simple terms for us newbies. I would like to use it, or some variation of it, MANUALLY - entirely manually, so, if possible, could you let me know the template, also the basic rules reqd to take trades. Also, what are the manual entry and exit points -sorry to bother you - Thanks a lot.
Great JOB!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #143 (permalink)  
Old 10-08-2009, 05:30 PM
Junior Member
 
Join Date: Sep 2009
Location: Malta
Posts: 24
ljuba973 is on a distinguished road
Stochastic - Combining few periods

Hi,

My target periods are M15 and M30 ... I made some EAs based on M15 + ADX and they are so-so ... On Strategy tester I get 1000-2000 maximum per month with a lot of stop losses. I would like to make one EA where I will combine few periods stochastics:

laStoK015 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_MAIN, 0);
laStoK115 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_MAIN, 1);
laStoD015 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_SIGNAL,0 );
laStoD115 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_SIGNAL,1 );
laStoK030 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_MAIN, 0);
laStoK130 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_MAIN, 1);
laStoD030 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_SIGNAL,0 );
laStoD130 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_SIGNAL,1 );
laStoK060 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_MAIN, 0);
laStoK160 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_MAIN, 1);
laStoD060 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_SIGNAL,0 );
laStoD160 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_SIGNAL,1 );

and IF conditions for opening positions I have such as:

if( ADX0 > 25 && laStoK115 < laStoD115 && laStoK015 > laStoD015 && laStoK030 > laStoD030 && laStoK060 > laStoD060 && laStoD015 < 20 && laADXP015 > laADX0015 ) OpenbyBuying("BUY");
if( ADX0 > 25 && laStoK115 > laStoD115 && laStoK015 < laStoD015 && laStoK030 < laStoD030 && laStoK060 < laStoD060 && laStoD015 > 80 && laADXM015 < laADX0015 ) OpenbySelling("SELL");

And I am closing these positions if laStoK030 < 25 or laStoK030 > 75. But it seems something is wrong here as I lose ALL money in half month!?

Can somebody tell me:

1. Is this logic possible to be implemented and is it logical thinking? I think this should be almost 100% openings = earnings. It should be 100% sure that price will go UP if 15, 30 and 60 mins stochastic K is above d and rising? Or I am wrong?
2. Do you know for some EA like this which minimize SL

Also I wanted to make indicator which draw stoc K and stoc D for 15 and 30 mins ... hardcoded values - without considering what period is selected ... with 4 lines there ... maybe will be messy but at least will show me lines at once. Does this make sense at all?

Thanks for help and your time

Aleksandar
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #144 (permalink)  
Old 10-09-2009, 01:07 AM
Junior Member
 
Join Date: Sep 2009
Location: Malta
Posts: 24
ljuba973 is on a distinguished road
Parameters in iStochastic?

What is difference between fast and slow stoch in simple words, and how i need to customize my iStochastic lines in code below to test fast/slow one? As i am using just 5,3,3 ... is it fast/slow/default?

Thanks



Quote:
Originally Posted by ljuba973 View Post
Hi,

My target periods are M15 and M30 ... I made some EAs based on M15 + ADX and they are so-so ... On Strategy tester I get 1000-2000 maximum per month with a lot of stop losses. I would like to make one EA where I will combine few periods stochastics:

laStoK015 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_MAIN, 0);
laStoK115 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_MAIN, 1);
laStoD015 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_SIGNAL,0 );
laStoD115 = iStochastic(NULL,15,5,3,3,MODE_SMA,0,MODE_SIGNAL,1 );
laStoK030 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_MAIN, 0);
laStoK130 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_MAIN, 1);
laStoD030 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_SIGNAL,0 );
laStoD130 = iStochastic(NULL,30,5,3,3,MODE_SMA,0,MODE_SIGNAL,1 );
laStoK060 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_MAIN, 0);
laStoK160 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_MAIN, 1);
laStoD060 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_SIGNAL,0 );
laStoD160 = iStochastic(NULL,60,5,3,3,MODE_SMA,0,MODE_SIGNAL,1 );

and IF conditions for opening positions I have such as:

if( ADX0 > 25 && laStoK115 < laStoD115 && laStoK015 > laStoD015 && laStoK030 > laStoD030 && laStoK060 > laStoD060 && laStoD015 < 20 && laADXP015 > laADX0015 ) OpenbyBuying("BUY");
if( ADX0 > 25 && laStoK115 > laStoD115 && laStoK015 < laStoD015 && laStoK030 < laStoD030 && laStoK060 < laStoD060 && laStoD015 > 80 && laADXM015 < laADX0015 ) OpenbySelling("SELL");

And I am closing these positions if laStoK030 < 25 or laStoK030 > 75. But it seems something is wrong here as I lose ALL money in half month!?

Can somebody tell me:

1. Is this logic possible to be implemented and is it logical thinking? I think this should be almost 100% openings = earnings. It should be 100% sure that price will go UP if 15, 30 and 60 mins stochastic K is above d and rising? Or I am wrong?
2. Do you know for some EA like this which minimize SL

Also I wanted to make indicator which draw stoc K and stoc D for 15 and 30 mins ... hardcoded values - without considering what period is selected ... with 4 lines there ... maybe will be messy but at least will show me lines at once. Does this make sense at all?

Thanks for help and your time

Aleksandar
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #145 (permalink)  
Old 10-09-2009, 06:38 PM
Junior Member
 
Join Date: Oct 2009
Posts: 4
tomonariventures is on a distinguished road
Simple Stochastic/EMA Strategy

Greetings:

I was hoping someone could code a simple EA for me. I am a newbie and dont have computing skills. I have been using the following strategy for some time (manually), with pretty decent results.

The process is very simple and I'm sure there are similar ones out there.

WORK with 1 LOT

BUY WHEN:

1. Stochastic crosses (%K crosses above %D) at or below 40

AND

2. Price closes above 13 EMA -- note this may take 3-4 bars - If it doesn't close above 13 EMA within 4 bars, then pass on the trade.

EXIT: Set SL at 20 pips -- and/or CLOSE Trade out at Profit of 30 pips.
ALSO, SELL if strategy reverses ie, BUY Signal becomes Sell Signal. and vice versa

SELL SIGNAL:
SELL WHEN:

1. Stochastic crosses at or above 70
2. Price closes below 13 EMA -- once again, this should take place within 4 bars.

... Any help/suggestions in coding this will be much appreciated.
Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #146 (permalink)  
Old 10-11-2009, 12:16 AM
Senior Member
 
Join Date: Sep 2007
Posts: 116
Ms_Mel is on a distinguished road
Here's the EA I'm using with my own strategy. It'll do what you want for your EMA part, but not for your stochs part. Maybe someone can implement that for you.

Hope this helps,

Happy trading,

Ms_Mel
Attached Files
File Type: mq4 MACrossEA.mq4 (32.9 KB, 42 views)
__________________
Profitable trading starts here:
http://forexleader-forexleader.blogspot.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #147 (permalink)  
Old 10-14-2009, 04:30 AM
Junior Member
 
Join Date: Oct 2009
Posts: 4
tomonariventures is on a distinguished road
Thanks

Ms. Mel:

Thanks for your reply - could you please briefly explain the method of your strategy - I assume its been doing well for you.
Thanks again, and good luck.
..Tomo
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #148 (permalink)  
Old 10-18-2009, 08:00 AM
Junior Member
 
Join Date: Apr 2006
Posts: 3
ljone is on a distinguished road
Order send error #130

I keep getting this 130 error while trying to back test the Mack Histogram V4. Does anyone know what might cause this? Thanks
LJS
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #149 (permalink)  
Old 10-18-2009, 05:04 PM
Avalanche2k's Avatar
Junior Member
 
Join Date: Oct 2009
Location: Russia, Kazan.
Posts: 14
Avalanche2k is on a distinguished road
Quote:
Originally Posted by ljone View Post
I keep getting this 130 error while trying to back test the Mack Histogram V4. Does anyone know what might cause this? Thanks
LJS
Hi, error 130 means wrong SL. Probably you SL is too close to the current price.
You can get this error in some cases, one of them - if EA was coded for 4 digits broker and you use it with 5 digits broker.
You could try to use other SL value, for example 200 instead of 20.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
SDS UMM ver1, stocahstic EA, stoch ea, stoch ea mm, stochastic, STOCHASTIC EA, Stochastic ea mq4, stochastic expert advisor


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Stochastic ea ajk Metatrader 4 6 01-24-2009 12:43 AM
RSI ADX Stochastic Shinigami Suggestions for Trading Systems 11 12-17-2008 09:11 AM
stochastic danu Expert Advisors - Metatrader 4 1 06-21-2006 07:47 AM
rsi and stochastic One Indicators - Metatrader 4 5 04-01-2006 06:12 AM
Stochastic v1 kostya2312 Expert Advisors - Metatrader 4 16 01-17-2006 08:15 AM


All times are GMT. The time now is 07:28 AM.



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