Forex
Google
New signals service!

Go Back   Forex Trading > Non Related Discussions


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (13) Thread Tools Display Modes
  10 links from elsewhere to this Post. Click to view. #41 (permalink)  
Old 08-07-2007, 03:21 AM
Senior Member
 
Join Date: Mar 2006
Posts: 905
barnix is on a distinguished road
EA with Kohonen Map (Neural Network) (RU)

Нейросетевые принципы создания МТС - Технический анализ Forex

Last edited by barnix; 08-07-2007 at 06:00 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #42 (permalink)  
Old 08-07-2007, 08:00 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,816
Blog Entries: 145
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Go to this page, then agree with conditions and rules and press the button. And you will be transfered to the registration page.
Fill the fields (you should write in english):
- first one is your desirable login.
- username.
- passowrd and confirm password.
- email address and confirm email address.
- security code (type the same).
- on the right side: agree to receive the messages from admin; agree to get messages from users; timezone.
Press button.

You will get the message in Russian language on your email address. Click on the most long link for activation.

And I've sent login and password to you by PM (i registered).

That's all that I can do.

Last edited by newdigital; 08-07-2007 at 08:02 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #43 (permalink)  
Old 08-07-2007, 01:28 PM
Senior Member
 
Join Date: Dec 2006
Location: Ukraine
Posts: 491
Shinigami is on a distinguished road
.....................................
__________________
MQL4 programming is easy ^^
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #44 (permalink)  
Old 08-27-2007, 03:19 PM
Junior Member
 
Join Date: Jul 2007
Posts: 5
xxfunguy007xx is on a distinguished road
Other fx forum with indicators/metods?

Hi guys

anyone know, except for this forum, forex factory, and babypips...are there are other forums with good indicators and good methods to share? thanks

Chris Yang
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #45 (permalink)  
Old 08-27-2007, 05:52 PM
kohzadi's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Tehran-IR Iran
Posts: 110
kohzadi is on a distinguished road
Hi barnix
You refer to a thread about neural network EA.
Do you have indicators based on neural network? Or threads about this?
Thanks in advance
__________________
health & wealth , success & happiness
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #46 (permalink)  
Old 08-28-2007, 08:36 AM
Senior Member
 
Join Date: Mar 2006
Posts: 905
barnix is on a distinguished road
Quote:
Originally Posted by kohzadi View Post
Hi barnix
You refer to a thread about neural network EA.
Do you have indicators based on neural network? Or threads about this?
Thanks in advance
First time you need this:
Attached Files
File Type: rar ns32.part01.rar (1.39 MB, 466 views)
File Type: rar ns32.part02.rar (1.39 MB, 386 views)
File Type: rar ns32.part03.rar (1.39 MB, 350 views)
File Type: rar ns32.part04.rar (1.39 MB, 342 views)
File Type: rar ns32.part05.rar (1.39 MB, 366 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #47 (permalink)  
Old 08-28-2007, 08:46 AM
Senior Member
 
Join Date: Mar 2006
Posts: 905
barnix is on a distinguished road
(continue)
Attached Files
File Type: rar ns32.part06.rar (1.39 MB, 351 views)
File Type: rar ns32.part07.rar (1.39 MB, 344 views)
File Type: rar ns32.part08.rar (1.39 MB, 332 views)
File Type: rar ns32.part09.rar (1.39 MB, 331 views)
File Type: rar ns32.part10.rar (777.2 KB, 332 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #48 (permalink)  
Old 08-28-2007, 08:55 AM
Senior Member
 
Join Date: Mar 2006
Posts: 905
barnix is on a distinguished road
A trained network you can call from MT4:

#import "NS2-32.dll"
int OpenNet(string defpath, int& netnumber[1], int& Nin[1], int& Nout[1]); // int FireNet(int& netnumber[1], double& inarray[], double& outarray[]); //
int CloseNet(int& netnumber[1]); //
#import
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
string defpath="C:\Koh_2007.def"; //Generated with ns32
int netnumber[1]; //
int Nin[1]; //
int Nout[1]; //
double inarray[], outarray[]; // nnet inpu output
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
int init()
{
ret=OpenNet(defpath, netnumber, Nin, Nout);
if (ret==0)
{
Print("netnumber= ",netnumber[0], " Nin= ",Nin[0], " Nout= ",Nout[0]);
ArrayResize(inarray,Nin[0]);
ArrayResize(outarray,Nout[0]);
}
else
{
Print( "OpenNet return: ", ret );
return(0);
}
return(0);
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
int deinit()
{
ret=CloseNet(netnumber); // Закрываем сеть
if ( ret!=0 ) Print( "Ошибка CloseNet ", ret );
return(0);
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

int start()
{

inarray[0]=.....
inarray[1]=....

FireNet(netnumber, inarray, outarray);

if (outarray[0]>50) ......
}
Attached Files
File Type: rar ex15.rar (64.1 KB, 318 views)
File Type: rar EX11.rar (166.3 KB, 305 views)
File Type: rar ex6.rar (44.0 KB, 232 views)
File Type: rar ex5.rar (77.3 KB, 284 views)

Last edited by barnix; 08-28-2007 at 08:58 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #49 (permalink)  
Old 08-28-2007, 09:30 AM
Junior Member
 
Join Date: Oct 2005
Posts: 4
igor30 is on a distinguished road
ho to use tjat files? could you explain?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #50 (permalink)  
Old 08-28-2007, 10:16 AM
Senior Member
 
Join Date: Mar 2006
Posts: 905
barnix is on a distinguished road
Quote:
Originally Posted by igor30 View Post
ho to use tjat files? could you explain?
1.Download the files:
ns32.part01.rar
ns32.part02.rar
ns32.part03.rar
ns32.part04.rar
ns32.part05.rar
ns32.part06.rar
ns32.part07.rar
ns32.part08.rar
ns32.part09.rar
ns32.part10.rar
2.Extract with winrar
3.Run setup and install NeuroShell 2
4.Extact the
ex15.rar
EX11.rar
ex6.rar
ex5.rar
files and copy in NeuroShell 2/EXAMPLES directory
5.The MT4 expert, indicator, and script files copy in
experts
experts/indicators
experts/scripts
directories
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
neuroshell


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/non-related-discussions/2516-national-forums-websites-sources.html
Posted By For Type Date
Sieci neuronowe na gie?dzie Forex - system, dyskusja This thread Refback 09-11-2008 07:50 PM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 02-01-2008 06:06 PM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 12-18-2007 10:20 AM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 12-16-2007 11:30 AM
Ч¤Ч•ЧЁЧ•Чќ - STRATEGY BANK This thread Refback 12-08-2007 10:18 AM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 11-30-2007 03:55 PM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 11-30-2007 03:41 PM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 11-30-2007 02:58 PM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 11-30-2007 02:56 PM
Sieci neuronowe na gieіdzie Forex - system, dyskusja This thread Refback 11-30-2007 02:03 PM
Forex Trading - View Single Post - National Forums This thread Refback 09-24-2007 06:44 AM
Зачем изобретать велосипед? - Страница 7 - Форум финансовой компании "Форекс Клуб" This thread Refback 07-02-2007 10:10 AM
under_marazm - как один омереканчег узнал, что METATRADER не был сделан в SilliconValley... This thread Refback 06-30-2007 01:25 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
National High Five day - today! trevman Non Related Discussions 1 04-19-2007 04:17 PM


All times are GMT. The time now is 10:48 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.