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.
Why change the name to DIN? Why not leave as KusKus EA and giving credit to the originator. I recommend no change Mr. PIP, maybe just add a version number.
I have nothing against changing the name to DIN but I left the name as KusKus because that is where I began development. I did not find anything in the DIN_EA_v1.0 that I dowloaded to be of use. If there is a newer version let me know. I had already added the code for GMACD and Hist_StepMA_Stoch_KV1_Ex_03 mentioned in a document I received from a member of the yahoo metatrader group. That document included the original strategy as well as mini-me. That was before I found this thread, also referred by a member of the yahoo group.
Heiken_Ashi_Ma and Fisher_m11 were suggested replacements for the ex4 indicators Heiken_Ashi_Kuskus2 and kuskus_starlightv2. The same for BBands_Stop_v2. I prefer to have source code so I can better optimize.
I added other ideas for trend because I felt that GMACD was a little delayed on trend changes. I added the idea of testing different trend indicators including GMACD for testing on other pairs. But currently on the GBPUSD 30 minute chart the HMA seems to work best.
bool CheckExitCondition(int cmd)
{
if (CheckHeikenAshi(cmd))
{
if (CheckStepMA(cmd)) return(true);
}
return(false);
// Maybe add these to check later
if (CheckFish(cmd)) return(true);
if(CheckBBStop(cmd)) return(true);
return (false);
}
For entry
bool CheckEntryCondition(int cmd)
{
if (CheckTrend(cmd))
{
if (CheckHeikenAshi(cmd))
{
if (CheckBBStop(cmd))
{
if (CheckFish(cmd))
{
if(CheckStepMA(cmd)) return(true);
}
}
}
}
return (false);
}
where cmd is OP_BUY or OP_SELL. Since StepMA is the slowest running indicator I check it last.
For exit it is usually the take profit or stop loss but sometimes the indicators exit the trade.
Right now I have the settings for the indicators hard coded. The next version will have them as inputs. Several members of the thread have mentioned different settings for some of the indicators.
Ups... I don't know whats wrong with your MT4, but i think to make this xls sheet working is very easy you just have to activate your DDE and run the xls..
Maybe you have to reinstall your MT4 software and than try again... or I've heard some broker's not allowed the DDE....
by the way .. what is your broker?....
Ups... I don't know whats wrong with your MT4, but i think to make this xls sheet working is very easy you just have to activate your DDE and run the xls..
Or Maybe you have to reinstal your MT4 software and than try again... or maybe some broker's not allowed the DDE.. by the way .. what is your broker?....
Hi!!
The one I have your XLS is FastBrokersFX.
What is strange is that you get right all your stuff on some pairs and you do not get it on others, like the screen shot I posted.
I'll activate DDE on other platfor just to give the last try to your nice XLS.
BTW, gone to your site and saw what you say about R Leslie 2000 Excel.
Could you make one related to FOREX?
THX.
__________________ Nina
We must fight on the winning side, not on the side we may believe to be correct.
I have nothing against changing the name to DIN but I left the name as KusKus because that is where I began development. I did not find anything in the DIN_EA_v1.0 that I dowloaded to be of use. If there is a newer version let me know. I had already added the code for GMACD and Hist_StepMA_Stoch_KV1_Ex_03 mentioned in a document I received from a member of the yahoo metatrader group. That document included the original strategy as well as mini-me. That was before I found this thread, also referred by a member of the yahoo group.
Heiken_Ashi_Ma and Fisher_m11 were suggested replacements for the ex4 indicators Heiken_Ashi_Kuskus2 and kuskus_starlightv2. The same for BBands_Stop_v2. I prefer to have source code so I can better optimize.
I added other ideas for trend because I felt that GMACD was a little delayed on trend changes. I added the idea of testing different trend indicators including GMACD for testing on other pairs. But currently on the GBPUSD 30 minute chart the HMA seems to work best.
Other suggestions are welcome.
Robert aka MrPip
Mr Pip,
I test your EA and please see the attachment..
somehow it trades with different rule from DIN itself...
any comment?
What is strange is that you get right all your stuff on some pairs and you do not get it on others, like the screen shot I posted.
I'll activate DDE on other platfor just to give the last try to your nice XLS.
BTW, gone to your site and saw what you say about R Leslie 2000 Excel.
Could you make one related to FOREX?
THX.
BTW that is not my site.. I only add the link in my previous post so you know where the source from..
OK I get your point..
Try this.. on the xls sheet go click Tools>>options>>international>>
Uncheck Use system separator.. then
Use dot (.) on decimal separator and use comma (,) on thousand separator.. then OK..
bool CheckExitCondition(int cmd)
{
if (CheckHeikenAshi(cmd))
{
if (CheckStepMA(cmd)) return(true);
}
return(false);
// Maybe add these to check later
if (CheckFish(cmd)) return(true);
if(CheckBBStop(cmd)) return(true);
return (false);
}
For entry
bool CheckEntryCondition(int cmd)
{
if (CheckTrend(cmd))
{
if (CheckHeikenAshi(cmd))
{
if (CheckBBStop(cmd))
{
if (CheckFish(cmd))
{
if(CheckStepMA(cmd)) return(true);
}
}
}
}
return (false);
}
where cmd is OP_BUY or OP_SELL. Since StepMA is the slowest running indicator I check it last.
For exit it is usually the take profit or stop loss but sometimes the indicators exit the trade.
Right now I have the settings for the indicators hard coded. The next version will have them as inputs. Several members of the thread have mentioned different settings for some of the indicators.
Robert
I am still not sure about StepMA
But here is a little test with RVI Metod