Home About Contact
ForexForums.org




Reply
Old 06-19-2008, 09:27 PM   #51 (permalink)
Administrator
 
kokas's Avatar
 
Join Date: Sep 2006
Location: Portugal
Posts: 504
Smile

there was upon a time...

where there was many members coding and helping here. Not anymore... in fact there are some days that I think in quiting this forum. But I continue to have a dream So I'm coding when I have time and I have to split this few hours on testing and coding the various systems that we began to develop here.

I really believe that Groodge is a very good system, and it is continuously producing some money on my account. Even with very few main trades closed the grid positions continues to increase the account size. I wish that more people test the systems and post results and suggestion. As this dont happen I have to test it by myself and see the very few results posted to try to improve the systems.

Maybe on summer people have more time to this forum
kokas is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Old 06-23-2008, 10:52 PM   #52 (permalink)
Junior Member
 
Join Date: Apr 2008
Posts: 13
Quote:
Originally Posted by kokas View Post
there was upon a time...

where there was many members coding and helping here. Not anymore... in fact there are some days that I think in quiting this forum. But I continue to have a dream So I'm coding when I have time and I have to split this few hours on testing and coding the various systems that we began to develop here.

I really believe that Groodge is a very good system, and it is continuously producing some money on my account. Even with very few main trades closed the grid positions continues to increase the account size. I wish that more people test the systems and post results and suggestion. As this dont happen I have to test it by myself and see the very few results posted to try to improve the systems.

Maybe on summer people have more time to this forum
Hello Kokas,
Unfortunatelly for me I'm not an experienced trader, although I'm learning tons day by day. I do want to contribute by testing your EA's and actually I think I gave some "ideas" an so Henrietta for this EA I believed the'd be integrated as had no reply from you.

I do believe this stochs EA has lots of potential.

I'll test groodge as never tried it.

I also want to ask if you run EA's on VPS, and what company would you recommend? I'm having lots of issues with the one I'm using as they reboot without notice, and even sometimes you cannot log into it, what is extremely critical for trading.
cfabian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-11-2008, 11:05 PM   #53 (permalink)
Junior Member
 
Join Date: Apr 2008
Posts: 13
Kokas,
I got into a new stochastics thread (probably you have as well). They have great ideas and have lots of programming skills. I posted in there your EA for review and got this reply:

-----
"If your going to trade stoch, trade stoch. why use MA? let alone a 110 period on H1. I'd only use MA of that on H1 if I was trading the Month TF.

I say, dump the MA and stick w/ Stoch only. That'll probably solve your one way opening positions up."
-----

I wanted to ask you to join that thread and probably the can help in coding and ideas. I'm sorry I don't have the skills to better this EA, but my interest on it is huge. Here's the link: MTF Stochastics EA's

Let me know your thoughts.


Quote:
Originally Posted by kokas View Post
there was upon a time...

where there was many members coding and helping here. Not anymore... in fact there are some days that I think in quiting this forum. But I continue to have a dream So I'm coding when I have time and I have to split this few hours on testing and coding the various systems that we began to develop here.

I really believe that Groodge is a very good system, and it is continuously producing some money on my account. Even with very few main trades closed the grid positions continues to increase the account size. I wish that more people test the systems and post results and suggestion. As this dont happen I have to test it by myself and see the very few results posted to try to improve the systems.

Maybe on summer people have more time to this forum
cfabian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-15-2008, 07:09 PM   #54 (permalink)
Junior Member
 
Join Date: Apr 2008
Posts: 13
Kokas,
I got the following suggestion as per modifying this superstochs EA v3:

Cheers


-------------------

Well, for all of them heading in the same direction; I can tell you. First you need to change this:

This Code:
S1M=iStochastic(NULL,PERIOD_M5,5,3,3,MODE_SMA,0,MO DE_MAIN,0);
S1S=iStochastic(NULL,PERIOD_M5,5,3,3,MODE_SMA,0,MO DE_SIGNAL,0);
S2M=iStochastic(NULL,PERIOD_M30,5,3,3,MODE_SMA,0,M ODE_MAIN,0);
S2S=iStochastic(NULL,PERIOD_M30,5,3,3,MODE_SMA,0,M ODE_SIGNAL,0);
S3M=iStochastic(NULL,PERIOD_H1,5,3,3,MODE_SMA,0,MO DE_MAIN,0);
S3S=iStochastic(NULL,PERIOD_H1,5,3,3,MODE_SMA,0,MO DE_SIGNAL,0);
S4M=iStochastic(NULL,PERIOD_H1,14,3,3,MODE_SMA,0,M ODE_MAIN,0);
S4S=iStochastic(NULL,PERIOD_H1,14,3,3,MODE_SMA,0,M ODE_SIGNAL,0);

to this Code:

S1M=iStochastic(NULL,PERIOD_M5,5,3,3,MODE_SMA,0,MO DE_MAIN,1);
S1S=iStochastic(NULL,PERIOD_M5,5,3,3,MODE_SMA,0,MO DE_SIGNAL,1);
S2M=iStochastic(NULL,PERIOD_M30,5,3,3,MODE_SMA,0,M ODE_MAIN,1);
S2S=iStochastic(NULL,PERIOD_M30,5,3,3,MODE_SMA,0,M ODE_SIGNAL,1);
S3M=iStochastic(NULL,PERIOD_H1,5,3,3,MODE_SMA,0,MO DE_MAIN,1);
S3S=iStochastic(NULL,PERIOD_H1,5,3,3,MODE_SMA,0,MO DE_SIGNAL,1);
S4M=iStochastic(NULL,PERIOD_H1,14,3,3,MODE_SMA,0,M ODE_MAIN,1);
S4S=iStochastic(NULL,PERIOD_H1,14,3,3,MODE_SMA,0,M ODE_SIGNAL,


1);Then the logic:

Code:
if(S1M>S1S && S2M>S2S && S3M>S3S && S4M>S4S)
{
//Long code
}
if(S1M<S1S && S2M<S2S && S3M<S3S && S4M<S4S)
{
//Short code
}
cfabian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-15-2008, 11:45 PM   #55 (permalink)
Administrator
 
kokas's Avatar
 
Join Date: Sep 2006
Location: Portugal
Posts: 504
Ok lets try it, I will post a new version as soon as I test it

maybe tomorow
kokas is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Old 07-24-2008, 07:06 AM   #56 (permalink)
Junior Member
 
Join Date: May 2008
Posts: 4
hi kookas,

u should change your code with iCustom instead normal stochastic or MA.
U cant backtest that with normal indicator.

Here is example

iCustom(NULL, 0, "#MTF_Stochastic", 30, 5, 3, 3, MODE_SMA, 0, MODE_MAIN, 0);


1 question i have. Why u choose SL= 1800, ive changed your code to icustom, it showed very large drawdown. Here is screenshot from backtest.
Attached Images
File Type: gif superstochv3.gif (20.0 KB, 8 views)
byens is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-24-2008, 07:55 AM   #57 (permalink)
Junior Member
 
Join Date: May 2008
Posts: 4
Margin Call on backtest.
Attached Images
File Type: gif TesterGraph.gif (7.3 KB, 3 views)
byens is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-24-2008, 08:05 AM   #58 (permalink)
Junior Member
 
Join Date: May 2008
Posts: 4
I use fxdd platform. Maybe it is broker issue? As far i know, fxdd not allowed too many open position. Just my suggestion.
byens is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-02-2008, 07:34 PM   #59 (permalink)
Administrator
 
kokas's Avatar
 
Join Date: Sep 2006
Location: Portugal
Posts: 504
I've implemented the code you sugest on this version.

It's very strange but the behavor is very different when use longs only or shorts and longs. The following images are take from the three situations possible: Longs and Shorts, Only Longs and Only Shorts, for the same period. As you can see there are something very wrong on the shorts positions. I'll try to figure out this big bug.

Meanwhile here is the EA, maybe someone can run some tests on it.

roger
Attached Images
File Type: gif TesterGraph Long&Shorts.gif (10.2 KB, 12 views)
File Type: gif TesterGraph LongsOnly.gif (9.9 KB, 7 views)
File Type: gif TesterGraph ShortsOnly.gif (9.9 KB, 8 views)
Attached Files
File Type: mq4 SuperStochs v4.mq4 (10.7 KB, 31 views)
kokas is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-26-2008, 04:40 AM   #60 (permalink)
Junior Member
 
Join Date: Jan 2007
Posts: 10
Quote:
Originally Posted by kokas View Post
You must use a multi time frame indicator... Just copy all the indicators to indicators folder, and call the tpl on your chart.
Are the *.mq4 source codes available, please?
henrietta is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
stochastics indicator, superstochs

LinkBacks (?)
LinkBack to this Thread: http://www.forexforums.org/mt4-expert-advisors-factory/91740-superstochs-ea.html
Posted By For Type Date
MTF Stochastics EA's - Page 3 This thread Refback 07-12-2008 07:08 AM
MTF Stochastics EA's - Page 3 This thread Refback 07-11-2008 04:06 PM
MTF Stochastics EA's - Page 3 This thread Refback 07-10-2008 10:58 PM
MTF Stochastics EA's - Page 3 This thread Refback 07-10-2008 05:03 PM
MENCOBA MENGAMATI EXPERT ADVISOR This thread Refback 07-05-2008 11:05 PM
Digg - SuperStochs EA This thread Refback 04-28-2008 01:41 AM
New EA posted posted for download - GlobalGoldTalk Money Making Forum This thread Refback 04-26-2008 03:57 AM
Untitled document This thread Refback 04-18-2008 03:09 PM


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 On


Sedo - Buy and Sell Domain Names and Websites project info: forexforums.org Statistics for project forexforums.org etracker® web controlling instead of log file analysis

All times are GMT. The time now is 08:15 AM.
Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.