Forex



Go Back   Forex Trading > Announcements > Analytics






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
 
Thread Tools Display Modes
  #61 (permalink)  
Old 01-29-2008, 12:10 AM
Senior Member
 
Join Date: Oct 2006
Posts: 206
aegis is on a distinguished road
Quote:
Originally Posted by marine1983 View Post
Sorry for confusion I'm mean online roulette where the numbers are created by a RNG. I'm using a program called money maker machine very clever in its use. But occansionally you get a draw down where you can only choose red/black as this is how the program works. When it gets to the 8th position it asks you to choose which colour and shows you a pallete of all the previous colours prior 8th positon just wondering weather you could use a neural net to guess the colour to choose. I know it sounds complecated in reading but it is simple when you watch a video on how it works

Sorrry admin if not allowed to say software name.
For any artifacts of an RNG to result in any discernible patterns in a large-scale casino operation would require monumentally poor programming. But, even if the RNG was completely predictable, this methodology is nonsense. The software for hundreds of casinos operates on huge servers run by the software companies. In addition, if someone had a way to beat an online casino consistently, they would quickly bar him. The concept of using a casino like an ATM is preposterous.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #62 (permalink)  
Old 01-29-2008, 08:29 AM
ellict's Avatar
Junior Member
 
Join Date: May 2007
Posts: 19
ellict is on a distinguished road
Using RNG for roulette table is 'almost' impossible, but doable on black jack, some call it 'counting card' isn't it?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #63 (permalink)  
Old 06-13-2008, 07:49 PM
progressapama's Avatar
Member
 
Join Date: Apr 2008
Posts: 67
progressapama is on a distinguished road
Smile CORTEX Neural Network software and Metatrader 4 EAs

Hello everyone,

I am looking for anyone who have a working Cortex Neural Network Software ( i think the last known version was version 5). If you have a working application please let me know. i need it very urgently to test and train some EA in metatrader 4 . I did purchase a copy from Neural Networks Tutorials and Software but it seems to be missing a "wait.dll" file. They also have a free copy but both of them don't seem to work since they are missing the "wait.dll"

Anyone who has used or have experience with this software . I am basically using it to train and test my Metatrader 4 EAs

I am running it on Windows XP professional with service pack 2.


Any help or suggestion is well appreciated. i need to Finish the EA by this weekend
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #64 (permalink)  
Old 06-13-2008, 07:55 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,016
Blog Entries: 235
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
Quote:
Originally Posted by Cyclesurfer View Post
Awsome New Digital! Ill look at the material in a few minutes...gotta break out the russian..which isnt so great, but I think that coupled with AltaVista ill be able to make a decent attempt. Im currently coding in CORTEX on other Neural Networks (NN from now on) and im planning to convert into MQ4...I think we should DEFINATLY keep this thread going because (and this is an opinion) NN are THE future of tecnical anaylsis. NN's, for those who arent geek enough to know..are basically algorythms that mimic the brain (not nessisarily the human brain..cuz that would be Mind bustingly complicated) in that it learns as it goes. Im writing the EAs to give advice on whether or not to take a particular signal based on small patterns that have come before when a similer signal was given. Thats what most NN's do, they search data for small patterns that would be meaningless to us, or even other algorthms and see what those patterns do over time. The first EA will feature Brain Trend. I ask that everyone be patient though, CORTEX coding takes time...rather, it takes time to train the NNs and perfect them. If anyone here is familier with CORTEX or Code conversion, any help would be appreciated. I understand why russian forum would go commercial...NNs are the current style with big money traders. So...what do you guys say?
I moved you post to this thread where you will find few persons concerning this software. One of them is quoted above.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #65 (permalink)  
Old 06-20-2008, 02:15 AM
Junior Member
 
Join Date: Oct 2006
Posts: 5
webesa is on a distinguished road
Cool Neural Network using Matlab and Metatrader

Hello!

I am using Matlab and developped a neural network for several pairs, but I have issues reprogramming the NN from Matlab to mql4!

For a test, I created a small neural network predicting USDJPY price from price in i+10 and i+20. It has 2 inputs, 3 hidden, 1 output. The hidden layer activation function is tansigmoide, for the output it is linear.
If I plot the NN output with the real price, it shows the NN is working, but with the code I did, it's definitely not working.

The calculated weights of hidden layer are :
[13.8525 -43.4534;
-11.2084 18.4331;
-0.30603 0.01022]

The weights from the hidden to the output are :
[0.0020021 0.0047956 -3.4143]

Bias of the hidden layer :
[13.876;
2.644;
0.083215]

Bias of the output
[0.27514]

The problem must be in the activation function wich should be tan sigmoide. As the price is more than 100, the MathExp(-100) give me something very small...
Here is the interesting part of the code :

>>
double a1=iClose("USDJPY",0,i+10);
double a2=iClose("USDJPY",0,i+20);


//Node (1,1)
double Sum_node_1_1=13.8525*a1 -43.4534*a2+13.876;
double Sigmoide_node_1_1=(1-MathExp(-Sum_node_1_1))/(1+MathExp(-Sum_node_1_1));

//Node (1,2)
double Sum_node_1_2=-11.2084*a1+18.4331*a2+2.644;
double Sigmoide_node_1_2=(1-MathExp(-Sum_node_1_2))/(1+MathExp(-Sum_node_1_2));

//Node (1,3)
double Sum_node_1_3=-0.30603*a1+0.01022*a2+0.083215;
double Sigmoide_node_1_3=(1-MathExp(-Sum_node_1_3))/(1+MathExp(-Sum_node_1_3));

//---- Exit value -----
double Sum_node_2_1=(0.0020021*Sigmoide_node_1_1+0.004795 6*Sigmoide_node_1_2-3.4143*Sigmoide_node_1_3+0.27514);


<<

Thanks for your Help!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #66 (permalink)  
Old 06-20-2008, 05:01 PM
Junior Member
 
Join Date: Oct 2006
Posts: 5
webesa is on a distinguished road
Here's an example to illustrate my problem constructing a neural network under Matlab. The picture I posted illustrate the target value (X) and the Neural network output (Y) for EURGBP. So at worse, for a real price of 0.7, the NN output is between 0.68 and 0.73 (pretty bad but it was just a test!).

If I use the NN weights to calculate the output value by hand, I get a 0.75, wich is impossible for 0.7... So I must be wrong somewhere in the calculation of my output... Here's the formula :

-1.1261*tansig(-1.6589*0.6964+1.4776*0.6936+4.5965)
-0.013796*tansig(-2.6065*0.6964+ 4.3402 *0.6936+0.30321)
+1.2166*tansig( 0.88612*0.69669364+0.11309 *0.6936+0.055821)+1.1116

The weights :
-Weights to layer from input
[-1.6589 1.4776;
-2.6065 4.3402;
0.88612 0.11309]
-Weights to layer
[-1.1261 -0.013796 1.2166]
-Bias to layer 1
[4.5965;
0.30321;
0.055821]
-Bias to layer 2
[1.1116]

The 2 input price used to calculate the output are :
0.6964
0.6936

The Network is a 2 inputs/3 hidden/1 output with Tangente sigmoide activation for hidden and linear activation for the output.

THANKS!!
Attached Images
File Type: jpg CapturePlot.jpg (22.7 KB, 1037 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #67 (permalink)  
Old 06-20-2008, 05:30 PM
Junior Member
 
Join Date: Oct 2006
Posts: 5
webesa is on a distinguished road
Lightbulb

Besides that, the correct Tangente sigmoide activation function was wrong in my mql4 code. The correct function is : 2/(1+MathExp(-2* x ))-1

Cheers!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #68 (permalink)  
Old 06-23-2008, 10:27 AM
Junior Member
 
Join Date: Oct 2006
Posts: 5
webesa is on a distinguished road
First results

this thread looks a bit dead, but I hope there is still people interested in Neural networks around! So please share your experience with NNets here!

I already tested a few combinations of factors to test the prediction power of neural nets.
As I read in different papers and posts, using previous High-Low-Open-Close seems totally unefficient. The NN is totally lost in the dark... The Fitting plot of real value versus NN output is horizontal (1st pic Open-Low-High-Close.jpg), meaning it can't predict anything at all. It is the same result as trying to find the loterie numbers with a NN
I tried different inputs and output values, normalized or not, the result is the same.

So what's worse to look at?? It seems that technical indicators work way better. I tested a mix of classic indicators as inputs to predict the absolute price. The fitting plot is not the best but not bad(2nd pic - Technical factors inputs.jpg). I also think using absolute values is a very bad idea.
Using the Moving average slope to predict future slope gives interesting results to identify possible reversals (3rd pic MA Slope.jpg).

Another interesting way of research is too use a NN to evaluate good trading conditions. So I created a normalized score claculated from the current close and it's distance to future High and Lows. If the score is high, it means that in the next 4 periods, the distance between current close and future highs is high (Buy profits aheads) and distance to low is low (no significant drawdown). I had no sucess with this method for the moment.

Hope to have some comments and experience sharings very soon!
Attached Images
File Type: jpg Open-Low-High-Close.jpg (81.9 KB, 974 views)
File Type: jpg Technical factors inputs.jpg (69.4 KB, 980 views)
File Type: jpg MA Slope.jpg (86.5 KB, 966 views)

Last edited by webesa; 06-23-2008 at 10:29 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #69 (permalink)  
Old 06-26-2008, 04:51 PM
OnTheRoad's Avatar
Member
 
Join Date: Apr 2008
Posts: 53
OnTheRoad is on a distinguished road
Congrats Webesa

THX Dear Webesa,
those are good resuls,
but 1 question : isn't it better to use larger NN (more inputs+ more layers+more neurons) to approximate better relationship between candles?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #70 (permalink)  
Old 06-27-2008, 12:45 PM
MrM MrM is offline
Member
 
Join Date: Jul 2007
Posts: 81
MrM is on a distinguished road
from neural net to dll

Hi,

does anyone have experience with integrating a dll that contains a trained neural network from Matlab or Neurosolutions into a mq4 script?
__________________
tensigma.blogspot.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
cortex, forex, forex matlab, forex neural network, forex neural networks, forex_nn_ind_juna, Forex_Nn_Ind_juna.mq4, joone forex, matlab forex, mql4 neural network, NEURAL, neural forex-tsd, neural mq4, neural net, neural network, neural network forex, neural network forex indicators, neural networks, neural networks forex, neuroproba, neuroshell

Thread Tools
Display Modes

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Big Maths program with Financial / Neural / Statistical Functions...... De Vinci Tools and utilities 3 10-12-2007 07:28 AM
Neural Forecast for Eurusd on 2006 De Vinci Tools and utilities 2 06-08-2006 04:27 AM
Alyuda Forecaster XL 2.13 ( Neural prog for Excel - US version ) De Vinci Tools and utilities 0 11-11-2005 11:29 AM


All times are GMT. The time now is 12:01 PM.



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