- Search Metals Mine
-
Kilian19 replied Jul 14, 2013Yes that's true. Since I work with my own libraries alot I get those warnings frequently. Most of the time if you don't want to clean up the code just leave that stuff in. You won't loose any performance and maybe those functions can be useful later ...
New MT4 GUI release question
-
Kilian19 replied Jul 14, 2013Those warnings just say that you got obsolete code. Code which is never used somewhere in the file and can be removed without changing the logic of the algorithm. As long as you just got warning and no errors there is nothing to worry about. If you ...
New MT4 GUI release question
-
Kilian19 replied Jul 14, 2013or if you don't have the source code you can just write a new indicator which calls the iCustom function several times, that's not nice coding but it works
.I have one indicator. Please can anyone change it to MTF?
-
Kilian19 replied Jul 13, 2013I was talking about this little tool which works great. I haven't looked at the script but if it works it's nice as well
url Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013How about a wSR value (weighted swing range based on the ATR value
). Well lets not get ahead and start with the most basic stuff huh. Adding more functionality later is always possible. As long as you don't let metatrader connect to the internet ...Drill yourself quickly into pairs you prefer: Zig zag statistics
-
Kilian19 replied Jul 13, 2013I remember having issues getting all the needed historic data last time I did an extensive analysis. Are you able to download enough historic data from the metaquotes server directly? It would be great if we work on the same sets of data would you ...
Drill yourself quickly into pairs you prefer: Zig zag statistics
-
Kilian19 replied Jul 13, 2013Sorry I think I expressed myself not clearly enough. I am not trying to program using Ninjascript I just want to learn how the platform works. I use the marketreplayconnection to trade on weekends and opened a market buy position on EURUSD. After I ...
Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013Do you know how we used to solve those questions? Take a pen and paper write down all the important variables and simulate 2 loops. Then pick the scenario when something interesting parts like when the Min function chooses the other value. It really ...
Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013That sounds doable and should work similar like my fibonacci probability analysis tool
. Well dang I should get back to studying. Talk to you later.Drill yourself quickly into pairs you prefer: Zig zag statistics
-
Kilian19 replied Jul 13, 2013No thats not true. Mql4 is really limited but it is enough for the average persons use. Once you want to do complex stuff you need to export the data and use external programms and programming languages. Mql4 gets much stronger once you learn how to ...
Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013try it that way. it is working for me if ( slopeAverage[inx] > slopeAverage[inx+1] ) { gadblUp1[inx] = slopeAverage[inx]; if(gadblUp1[inx+1] == EMPTY_VALUE) gadblUp1[inx+1] = gadblDn1[inx+1]; } else { gadblDn1[inx] = slopeAverage[inx]; ...
Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013would you be so kind and upload your current version
?Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013The script could look something like this: int start() { string name = "Hide"+Symbol(); if (GlobalVariableCheck(name)) switch (GlobalVariableGet(name)) { case 1: GlobalVariableSet(name,2); break; case 2: GlobalVariableSet(name,1); break; default: ...
Is this even possible in MQ4? (Capslock Toggle)
-
Kilian19 replied Jul 13, 2013Xaphod good point. I didn't see him using an average function in his code and I thought the only problem was that the lines had a wrong color. I had my trouble with average calculation as well the first time I used it. You need 2 for loops. During ...
Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013And you should be sure about what you want
. I prefer statistic indicators everyday over trading signal indicators. A year ago I wrote an indicator which sampled the volume of a few years worth of 30 minute bar data to give me a picture about what ...Drill yourself quickly into pairs you prefer: Zig zag statistics
-
Kilian19 replied Jul 13, 2013There used to be a mt4 tick simulator somewhere on the internet. It's a really neat and little program when you want to test your code during the time markets are closed. The simulator sends a fake tick every few ms

Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013In my opinion mql4 is a poorly written language. Anyways that is a bug that happens but is not that crucial since you won't be changing the code all the time
. One thing you might want to try is adding the color property for the Buffers in the ...Why won't this work? Please Help! (Color Changing TMA Slope)
-
Kilian19 replied Jul 13, 2013I was always interested in zig zag analysis and was about to write a generic zigzag analyzing tool anyways (a zig zag which computes the best fitting zig zag for a period and projects it on the next session). Is there someone coding this stuff for ...
Drill yourself quickly into pairs you prefer: Zig zag statistics
-
Kilian19 replied Jul 13, 2013Exams are upcoming and I just have internet using my smartphone at the moment (the charts images are not even loading
). If no one else helped you until Monday evening you may send me a personal message and I will take a look into it. The issue ...Help with Indicator, EA or even Trade Manager
-
Kilian19 replied Jul 13, 2013There probably is a workaround with the windows api. I did some extensive gui stuff with mt4 earlier (like manual trader during backtest ...). Just some food for thought: A script creates and modifies a GlobalVariable. 1 if caps is pressed 0 ...
Is this even possible in MQ4? (Capslock Toggle)