View Single Post
  #1030 (permalink)  
Old 09-14-2007, 05:45 PM
MrPip MrPip is offline
Senior Member
 
Join Date: Mar 2006
Location: La Verne,CA
Posts: 560
MrPip is on a distinguished road
Quote:
Originally Posted by zmax View Post
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
Reply With Quote