self updating/refreshing grid, compare two groups of trades
-
I am not a programmer and I don't know how this is working in the background but if there is a connection between a variable and blocks it should be possible to indentify what blocks these are. If this is possible, just highlight them (maybe a yellow "aura" instead a red one) connect these indentied blocks with a button to toggle highlighting blocks and thats all. For me this is very simple and clear :).
-
But I did exactly that and I wrote about it few posts above. Here is the picture again: http://prntscr.com/869vpe It's not a button, but is still works.
-
could you post the link to an example that works as you are showing. I could not verify what your post is trying say on my projects.
-
Import this project (export .mq4 and then import it) https://fxdreema.com/shared/7ODmVB5Rd
Then open Variables and put the mouse in the red zone on the next picture
http://prntscr.com/883411
http://i.imgur.com/I9wmO52.png -
I still can't import projects and the whole menue-bar is not working. I although can't update my project (changings are not "saveable", the history doesn't change).
I am using firefox. I have read there are chrome issues. It seems there is no reaction of project to clicking on "update". I can't change my project at all.
-
Send me EA that can't be imported. Everything works for me, how can I know what is the problem when there are so many systems and browsers...
-
after fixing the .js issue I can see how highlighting variables and constants is working. This is very nice but can't you add a button to make it permanent until turn off again?
-
Today I fixed something so the detection of variables is a little bit more accurate.
I will add some button eventually, but I want to make some additional tests before that, to be sure that all variables are correctly detected. Otherwise you can highlight blocks and leave them highlighted - just escape from the variable's name on it's left or right side.
-
It seems there is something wrong with my EA since update. A change in properties/attributes of EA has no effect. Changing constants value while EA is running has no effect. Could you look over please (v2.7).
An older version (not imported) is working correctly. Older, after the update downloaded versions are showing errors like " '111' name expected " and are not working at all. Did you have changed something to groups.
-
I didn't noticed that, but I fixed it now
-
The group-number issue still exists. You don't have to fix all older versions of my EA but I need v2.5. There are still manny errors like " 'group-number' - name expected ". Could you fix that, please.
The properties issue I will verify when markets are open again.
-
I think this is ok now
-
It seems everything is working again. Thanks.
-
Is it possible to save current values of all variables and restore them again after mt4 restart? If not could you make "something"? In case I have to update a current running EA on live demo/cent account I am always "loosing" all variables and this is changing EA's behaviour for the future.
-
Something like Cookies in browsers, I guess
Maybe... MT does not have this by itself. It only have some Terminal Variables, but they are global for the all EAs, but it can write files otherwise.
For what are your variables used? -
variables are used for lot-size calculation, average price, ect. . Variables are using for lot-size calculation are the major issue, these variables I would like to have stored/saved before restart mt4 otherwise lot-size calculation is starting from begining. If I could do something, please explain how.
-
The normal way is to calculate the next lot size by using lot sizes of existing trades. Or closed trades, but by "existing" I mean such that exists in the database of MT and also on the server. This is how for example Martingale works - it reads the lot size of the previous trade and doubles it, but it does not use variables to store the last lot size that was taken.
-
well,... is it possible to save values of variables and restore them after mt4's restart. What have to be done to make that?
-
What about those Terminal Variables? https://fxdreema.com/help/-/working%20w ... 0variables
-
That looks good but what if I am using the same EA simultaneously on different markets on the same mt4 programm /terminal? I need the global variables working for each EA and market. It is not helpfull if global vars are the same for all EA's and markets. Each EA is running on a different market and lot-size calculation is also different.