Quote:
Originally Posted by zmax
MrPip,
Congratulations for the hard work you did and for the good results. What timeframes,what currencies, what broker have you tested for?
I'm asking because i've obtained other results with nonlagdot and qqe filters.
Thanks, Zmax
|
Were your results better or worse?
Test posted was on GBPJPY 1 Hr timeframe on FXDD trading 1 standard lot.
Indicators nonlagdot and qqe were tested separately.
Here is the code I used to access the indicators.
int getNonLagDot()
{
double NLD_Long, NLD_Short;
NLD_Long = iCustom(NULL, 0, "nonlagdot",
NLD_Price, NLD_Length,NLD_Displace,NLD_Filter,NLD_Color, NLD_ColorBarBack,NLD_Deviation,
1,1);
NLD_Short = iCustom(NULL, 0, "nonlagdot",
NLD_Price, NLD_Length,NLD_Displace,NLD_Filter,NLD_Color, NLD_ColorBarBack,NLD_Deviation,
2,1);
if (NLD_Long < 1000) return(LONG);
if (NLD_Short < 1000) return(SHORT);
return(FLAT);
}
int getQQE()
{
double QQE_RsiMa, QQE_TrLevelSlow;
double QQE_RsiMaPrev, QQE_TrLevelSlowPrev;
QQE_RsiMa = iCustom(NULL, 0, "QQE", 0,1);
QQE_TrLevelSlow = iCustom(NULL, 0, "QQE", 1, 1);
QQE_RsiMaPrev = iCustom(NULL, 0, "QQE", 0,2);
QQE_TrLevelSlowPrev = iCustom(NULL, 0, "QQE", 1, 2);
if (QQE_RsiMaPrev < QQE_TrLevelSlowPrev && QQE_RsiMa > QQE_TrLevelSlow) return(LONG);
if (QQE_RsiMaPrev > QQE_TrLevelSlowPrev && QQE_RsiMa < QQE_TrLevelSlow) return(SHORT);
return(FLAT);
}
Exit was at first zigzagpointer arrow after entry.
Robert