Recent content by fralo

  1. F

    3rd generation NN, deep learning, deep belief nets and Restricted Boltzmann Machines

    Glad to see you're still around. You think maybe this horse is dead?:D
  2. F

    Build Neural Network Indicator in MT4 using Neuroshell

    I understand the problems. Interesting that there is that much difference between Dukas and FXDD. Dukas is an ECN with large liquidity, so I might be suspicious of FXDD. They may have been stop hunting at those extremes?:) If you follow eareview method to download and convert tick data for MT4...
  3. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Hi Arry. You asked for a post to show how to convert C source to a DLL callable from MT4. Here is one way: Assuming that you have modified the C Source so that the function to be called is something like: #define WIN32_LEAN_AND_MEAN #include <math.h> #include <windows.h> __declspec (dllexport)...
  4. F

    Build Neural Network Indicator in MT4 using Neuroshell

    I just had time to read this thread and get caught up again. There was a discussion of the data to use, and if the tests were data sensitive. You can look here http://eareview.net/tick-data for a good discussion of the use of data and a method to get very consistent results using data from...
  5. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Re: NS2 Optimization using Higher speed processor I think that Krzysiaczek99 has previously posted software that uses multiple cores either in this thread or maybe on his thread here...
  6. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Yes, I mistook the inputs from one of Ziko's posts. I thought that the OHLVC were included. You were right, if the net is trained on RSI then introducing OHLVC could easily overload it and drive the output to an extreme. EA performance will depend...
  7. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Welcome:D Now I don't have to debug it.:clap:
  8. F

    Build Neural Network Indicator in MT4 using Neuroshell

    That is different than the inputs used in the indi I posted. When I have time I will try to make a mod and debug. Meanwhile here is an indicator that uses a dll compiled from NS2 source. ALL files needed are included. Indicator is commented and explanation of mods needed for VC++ compilation...
  9. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Hello Arryex and Ziko.. I have no experience using NS32.dll. MT4 has many problems calling dlls, and it may be that one of these is causing your difficulties. However, I have had much success calling DLLs generated using Visual C. I have had success using NS2 to generate C source code for a...
  10. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Here is a simple indicator that should load your inarray, fire your net and place the output in a buffer for display. I have not debugged the DLL call, since I have no time for a few days, but if you place the def file in the folder that you originally specified, and have the NS32.dll in the...
  11. F

    Build Neural Network Indicator in MT4 using Neuroshell

    I meant that the open is almost always = close of previous bar (hence it is known). But perhaps you are trying to predict the RSI(open) several bars in the future.
  12. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Has anyone tried using the BPNN code given here http://codebase.mql4.com/5738 It might be useful to train nets on the fly.
  13. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Hi Ziko.. We are all amateurs here.:D You have done good work here, but you have not completed it. Your indicator is difficult to fix without significant changes. I assume that your goal is to display a plot of the predicted RSI of next bar open. You should calculate the set of inputs defined in...
  14. F

    Build Neural Network Indicator in MT4 using Neuroshell

    Tovim... Please post the neurosignal.rar that Arry refers to above. Otherwise we must wait for Arry to come home from the sea. Thanks.
Top