Build Neural Network Indicator in MT4 using Neuroshell

ran a test on a demo account
 

Attachments

  • 1.jpg
    1.jpg
    281.8 KB · Views: 500
I would like to share and test one of my indicator (aaneuromacd) to anyone who want it, requirement:
- the indicator only valid for a single account only
- you should inform me what is your account number (no need your password)
- this indicator is dll version then you need to install visual C runtime redistributable

I will give this indicator only for the first 10 requester..sorry if you are late..

This is free......
 
this is the screenshot for the indicator mentioned
 

Attachments

  • aaneuromacd dll version.png
    aaneuromacd dll version.png
    37.7 KB · Views: 618
Am I the first one? Thanks Arry.
The account number of MT4? My's 1935511.


I would like to share and test one of my indicator (aaneuromacd) to anyone who want it, requirement:
- the indicator only valid for a single account only
- you should inform me what is your account number (no need your password)
- this indicator is dll version then you need to install visual C runtime redistributable

I will give this indicator only for the first 10 requester..sorry if you are late..

This is free......
 
I would like to share and test one of my indicator (aaneuromacd) to anyone who want it, requirement:
- the indicator only valid for a single account only
- you should inform me what is your account number (no need your password)
- this indicator is dll version then you need to install visual C runtime redistributable

I will give this indicator only for the first 10 requester..sorry if you are late..

This is free......

My account is 671151

Thanks.
 
Hi All,

Thank for the response..

To anyone who need the indicator, please PM me and mention the email address. I will send it via email respectively.


Thanks
 
Hi,

I have sent the indicator to the first 5 requester, please check your email (it may come to your spam folder).

Please PM me if you have any problem.
 
I received feedback from Erick that he succeed to displaying the indicator, if anyone still getting problem please let me know.

Here a small guide how to use indicator, but you can experiment your self.
Currently I use it in 1H time frame:
- Based on the cross over blue and red
- Use yellow line to indicate cross over, positive for uptrend (buy) and negative for down trend (sell)
- You can change also the level value for yellow line (default =3)m right click, properties to change this value.

This indicator quite good for trending market.
 
arryex,

I tried it but I can't get passed the error 126...
I have installed the VC++. also tested it on two machines ( xp and win7 ), both same error.
 
Hi Nick,

Most probably the OS is not updated, I am sure if you can install visual studio 2010 (which include all required OS update) it should solving the problem.
 
Hi arryex,
Sorry for late feedback :eek:
for me indicator work well. But I did not trade gold :p
interesting indicator I try to make like this by NS2.And I still learn how to use it.
thank you.
 
Hi Palwoong,

Thanks for the feedback and congratulation if it can run well in you PC.

If you want to learn, I advice you to start with your own idea on your pair..I am happy to give suggestion if I can..but do not ask me to give you final code..everything should be learned gradually.
Decide what you want to predict ..then lets find the good input, train the net and deploy it afterward.
I took more than 2 years since starting this thread...so be patient
 
Here are basic of aaneuromacd:
Inputs:
1. iRSI(NULL,0,14,PRICE_CLOSE,i)/100;
2. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_MAIN,i);
3. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_MAIN,i+1);
4. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_MAIN,i+2);
5. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_MAIN,i+3);
6. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_MAIN,i+4);
7. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_SIGNAL,i);
8. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_SIGNAL,i+1);
9. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_SIGNAL,i+2);
10. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_SIGNAL,i+3);
11. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_SIGNAL,i+4);

outputs:
1. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_MAIN,i) - iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_MAIN,i-5)
2. iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_SIGNAL,i)-
iMACD(NULL,0,ma1,ma2,ma3,PRICE_CLOSE,MODE_SIGNAL,i-5)

where ma1/2/3 can be set at any value you want
Target prediction is future 5 bar momentum MACD value..

Neural net configuration : back propagation
after training with NS2 then you can display future 5 bar MACD as predicted value + current MACD.
 
Hi arryex,
thanx for the indicator,it works very well ,to build an indicator like this take a lot of time,,thanks for sharing
 

Attachments

  • aa.gif
    aa.gif
    18.1 KB · Views: 1,229
Top