Group number?
Posts made by fxDreema
-
RE: Every N Bars and Renkoposted in Bug Reports
Maybe I missed to fix this particular block, I remember that I changed some 0s with 1s. Now working?
-
RE: Betting systemposted in Bug Reports
But there are probably unlimited options for this. What can be done easily is to put some simple formula in the input field, instead of the lotsize value. Here are some functions that can be used, and they are also easy to be remembered: http://docs.mql4.com/account/accountbalance
-
RE: Basket Profit based on total pip valueposted in Questions & Answers
in "Adjust" a value like +50% should work only because % is transformed to /100 by fxDreema while generating the output file. Otherwise 50% or 50/100 can't be used as a value for variables, because variables are defined before the EA even start to work.
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
I think this is ok now
-
RE: self updating Gridposted in Questions & Answers
I guess you want to create Buy orders below the price and Sell orders above the price. For the regular blocks (Buy pending order and Sell pending order) you can do this by giving negative value for the offset. In grid blocks, use negative value for the grid setting.
-
RE: fxDreema was updated... obviouslyposted in Questions & Answers
It looks that this http://prntscr.com/8abjhy can't be used for input. But I will never suggest to use those checkboxes like this and I was almost about to remove them completely. Better use "Constants" instead.
-
RE: Formula Resultposted in Bug Reports
Fixed. It's now Value -> Numeric. There will be no "Formula" selection in "Condition" anymore, because the block "Formula" will write it's values in a regular Variables that must be manually defined.
The first reason for this is because it's easier for me to have it in the code, it's much simpler than before. And the orher reason is because people tend to use Formula results in very bad way - when they create a Formula block, they just leave it's result name how it is, and I have seen many projects with many Formula blocks, each one of them creating it's own Formula result. I can't understand how such projects work, I can't imagine how people work with them. So now each Variable must be manually written, which means that the person will take a little bit more care of the way it is named, so later when he opens his project he will immediately know what that Variable means and for what it is used.
I still don't like "Formula" block because it is too simple, but I'm not sure how to make it better, so if you (or anyone) have some idea, I'm here to listen
My goal is to make this block able to do multiple calculations, not only one. -
RE: TRIX condition x Exponential Moving Averageposted in Questions & Answers
This is expected, because Moving Average is read from the main chart and it's values there are different than the values of Trix. In case you wonder, currently MA placed on other indicator can't be read by "Condition"
-
RE: Adding lines of code into the .mq4 &/or .ex4 export filesposted in Questions & Answers
Includes are possible, but via custom blocks.
Here https://fxdreema.com/studio/ there is this field down below http://prntscr.com/89y8i1 where certain things can be added - includes, imports or global variables. But if you try to export .ex4/.ex5 it will probably return an error, because the include file does not exists on the server.The other thing can be made much easily, just put the block "Counter: Pass once" in "on Tick" and connect next blocks after it's second output.
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
I didn't noticed that, but I fixed it now
-
RE: i need simple button only one click.posted in Questions & Answers
By the way, any other object can be used for clicks
-
RE: Thank You...posted in Questions & Answers
Your blocks (on the previous page) looks fine. When 2 ot more Condition blocks are connected and one of them fails, the next one is not checked and everything stops at that point. On the next tick - the same story. No "AND" is needed, because when blocks are connected like this (one after another) this is already AND.
If something is not working, then I think that something in the blocks is not set as it should be. In the top 2 conditions you work with the Current timeframe and if your chart is at H4, then they work on H4, the same as the bottom two contidions.
-
RE: Order Counts longs and shorts NOT workingposted in Bug Reports
Ok, I did that. I'm not sure for the indicator thing. There is a built-in custom indicator for this anyway - iExposure
-
RE: Not Able To View Variables in Mt4posted in Bug Reports
Variables are not input parameters of the EA, Constats are. There were actually checkboxes before to make a Variable input parameter, but now I think I missed to turn them into Constants with the new update

-
RE: Project stuck Loading...posted in Questions & Answers
I believe that you are working with the local version. It is pretty stable, but sometimes such things can happen. This project should have some history records, so you can easily go somewhere to change the default history point. Go in the folder where fxDreema is installed and then in Data/%username%/experts/. Find the folder of your expert by it's id number. Then enter in HISTORY/ and open lastactive.ini. This file contains simple number and you can modify it. Write lower number, save the file and open fxDreema. If it doesn't work, try with lower number... you can actually see what numbers are available. It looks like this: http://prntscr.com/89bmt0
-
RE: doesn't paste, only gives a /posted in Bug Reports
So you open a text file, select it's contents, then hit Copy and when you Paste that code it appears as /? But why do you take so many steps to get the output content? In Chrome you can put my extension (it is App actually) to write the files directly where they need to be without Save As, copy and paste. In this case MetaTrader can open them without problems, or at least there are no report for problems with this. Well, I don't know how Mac works, but it should work somehow.
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
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.