Encog Articles
Here are some articles about Encog.
Here are some articles about Encog.
Copyright 2005 - 2012 by Heaton Research, Inc.. Heaton Research and Encog are trademarks of Heaton Research. Click here for copyright, license and trademark information.
Comments
AI
Doenloads NLP & NN?
Java Implementation
Hi,
Can you give me the java implementation of the same. I would be very thankful.
Yes, it is on my list to port
Yes, it is on my list to port this to Java at some point.
EncogCandleStickExample.zip
The following is from IdentifyCandleStick.cs:
public bool IsBlackCandle()
{
return (HasBody() &&
HasUpperShadow() &&
HasLowerShadow() &&
IsBlack());
}
public bool IsWhiteCandle()
{
return (HasBody() &&
HasUpperShadow() &&
HasLowerShadow() &&
IsBlack());
}
Clearly the IsWhiteCandle() is in error and needs either IsWhite() or !IsBlack() to work correctly.
I hope this is the right place for this post. Also, I may have it posted twice. I'm new to Encog and still feeling my way around.
Don