View Single Post
  #104 (permalink)  
Old 08-24-2008, 05:48 AM
adimsh adimsh is offline
 

Join Date: Aug 2008
Posts: 1
Default

Quote:
Originally Posted by aroonraj View Post
@ All,

Attached is the script file to output signals for training. I did not add it to the main indicator as it would confuse the newbies.

Cheers!
Arun
Hi Aroon,

Thanks for your great job, I have a comment regarding the output values of your writer:

you are using
Code:
output[0] = EMA5(1)-EMA5(2)
output[1] = EMA5(2)-EMA5(3)
output[2] = EMA5(3)-EMA5(4)
This will predict 3 different EMAs(at different shifts), I suggest your output to be:
Code:
output[0] = EMA5(1)-EMA5(2)
output[1] = EMA5(1)-EMA5(3)
output[2] = EMA5(1)-EMA5(4)
This will predict 3 values for the EMA at the same shift, allowing for more precise prediction if you average the values.


One more thing about FANN, I have a CLI fann tool written by me, running on Windows, if you are serious about using FANN tool, I can post the EXE here.


Regards,
Reply With Quote