Build 100 was the same since December 2015
Unfortunately... because I'm not going to fix this error in it. I remember such report before by the way, I think it was in email and I probably fixed it in the web version, but I'm not sure what it was
Posts made by fxDreema
-
RE: '&&' - illegal operation use.posted in Bug Reports
-
RE: Limited trades and ea self terminatesposted in General Discussions
What "self terminates" mean exactly? I need more specific information of course.
By the way by looking at your latest project, I can see you have one block with blue outline (Wait to Pass is selected for it). I don't think you need that.
-
RE: Import Custom Indicatorposted in Questions & Answers
This is not a restriction from fxDreema, the problem is that at least I don't know how to read .ex4 files and extract input parameters from them. MetaTrader can do that obviously, but when you upload indicators, they are not even uploaded. The file (.mq4) is read by the browser, parameters and buffers are extracted from the code and then sent to the server. Because fxDreema needs only them. But if you open .ex4 file with text editor, what do you see
After all .ex4 files must be secure and this itself is a good reason for MetaQuotes to make them hard (or impossible) to read -
RE: Applying an indicator to Previous / First Indicator's Data in fxDreemaposted in Questions & Answers
True. This was requested so many times since the beginning. Then I decided to implement it, but stucked in MQL4. I don't remember the exact reason why it was not possible, I only remember that it's just not possible because of MQL4
-
RE: Custom indicator does not open in fxdreema because it is .ex5 file and not mq5. Because?posted in Questions & Answers
You know them all, look here at the bottom: https://fxdreema.com/help/working-with/custom-indicators
-
RE: WORKING WITH PIVOT LINESposted in Questions & Answers
Isn't it working when you change timeframe and candle in "More settings"?
-
RE: +10pipsposted in Questions & Answers
You know, I think that "+Something pips" can be used as well. I did it this way. I hope I'm not missing something
-
RE: Issue with HA Indicator Signalsposted in Questions & Answers
"Close" means the Close part of the Heiken candle. You are trying to get Close value of a Bull Heiken Ashi candle when the previous Heiken Ashi candle is Bear (the opposite).
You can always use "Trace" block to check the value returned by any thing that you can chose in Condition and similar blocks.
-
RE: MA Deviation Orders (Hot to do it?)posted in Questions & Answers
In Value -> Pips, for the "Pips" parameter you should put value such as 10. Let's say this value of 10 means 10 pips. The second value means how to transform this number of 10.
- "as price fraction" will transform it into something like 0.0010
- "this value, as is" will do nothing. It's the same as if you use Value -> Numeric
What kind of value does "dev" contain? It's Moving Average +/- some pips. This is price value. Ask is also a price value. On the right side better try Value -> Numeric and there select "dev"
-
RE: Custom indicator does not open in fxdreema because it is .ex5 file and not mq5. Because?posted in Questions & Answers
I don't understand what is "my custom bookmark". In general, in fxDreema the idea is that you can "upload" an indicator so you can use its input settings in blocks like Condition instead of manually writing parameters somewhere. There is no actual upload. What happens is that the browser reads the .mq4 file, ffinds the input parameters and buffers in its MQL4 code and sends that data to fxDreema.
If you only have .ex4 file, it can be read. In this case you can only manually put all the data needed.
It's very important to define the exact number of input parameters and possibly their data types, otherwise MetaTrader will load the indicator again and again.
-
RE: horizontal line for buy and sellposted in Questions & Answers
"horizontal line on the current candle" - horizontal line is an object that has only one parameter, which is price level. You know, you can move it up and down, but not sideways. Horizontal line is in no way connected with any candle. If you have trend line, then we can talk about candles.
I don't fully understand the question, but I can suggest those Virtual stops. Basically you can choose to have horizontal lines instead of SL and TP and the EA will close the trade when its SL line or TP line is crossed. This is only for MQL4 at this time. I should make this for MQL5 one day and also similar thing for pending orders

In the example that miro1360 shows, block 1 can be connected after the orange output of block 10. It will probably work the same, but I personally prefer to use the orange outputs instead of the yellow ones, while miro1360 prefer yellows

-
RE: WORKING WITH PIVOT LINESposted in Questions & Answers
So, I added few new options and you can test them. You can also look at the source code (if you understand) or compare the output values with some indicators to confirm that all calculations are correct. I'm not 100% sure that they are, because of the different formulas in different sources. And who knows, maybe I wrote some letter wrong, wut I was working on this for hours and this is all from me for now.
Something that is nowhere written - if you have Candle ID = 0, pivot points are calculated based on candle 1. The timeframe should be chosen, better don't leave it to default value. Unfortunately the default value for this particular parameter is global, because the parameter is global, I can't set it let's say Daily only for Pivot Points.
-
RE: WORKING WITH PIVOT LINESposted in Questions & Answers
https://fxdreema.com/forum/topic/4289/january-2017
While looking for information about these Pivot Point methods, I found that the formulas are sometimes different in different sources. Maybe they are not standard.
Compare those 2 sources:
http://www.babypips.com/school/middle-school/pivot-points/how-to-calculate-pivot-points.html
https://quivofx.com/indicator/pivot-points/In Babypips they say: Third resistance (R3) = High + 2(PP – Low)
In quivofx this is R3 for Woodie Pivot Points, not for the Classic formula! -
RE: WORKING WITH PIVOT LINESposted in Questions & Answers
I think that at the moment S3 and R3 are wrong. I also found that there are different ways to calculate - https://quivofx.com/indicator/pivot-points/ I will use these formulas to update this feature
-
RE: +10pipsposted in Questions & Answers
I think there is no way at the moment. But I wonder how to make it. Maybe (VarName)pips or Varname(pips) or Varname pips or Varname{pips} or something like this. Any suggestion?
-
RE: OrderCheck() failed: Unsupported filling mode (10030). MT5posted in Bug Reports
Broker name? Problems like this are reported over and over again and I fix them over and over again, but MQL5 works in unexpected ways for me and to fix some problem I need to be able to see it

-
RE: The strategy from scratch questions and problemsposted in Questions & Answers
100 usd gain can be checked. In Condition you can check the global account profit. Or use "Check profit (ulrealized)" to calculate the profit made from a group of trades (then put "Close trades" to close the same group).
Closing 50 usd is not easily possible, I never made block like this. For example "Close trades" closes trades that can be filtered by group, type, symbol or age, but their profit/loss is not checked. It can be done somehow with "For each Trade" and other pink blocks, I guess, but some Variable will be needed as well.
-
RE: No trade nearby - case 1: and case 2: something missingposted in Bug Reports
For this block you can read the descriptions of its parameters, I updated them lately and I tried to explain all details there. Just click over the name of some parameter. I was also trying to make some example, but I stopped for some reason, I don't remember why

-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
I don't know why the post is placed at the beginning, this forum is a mystery for me, but it works fine most of the time

The problem is in block 1728, something with Constants. Similar problem happened before few times and I fixed them... now I don't know what is the problem exactly, I need to investigate. But some Constant named "manual_trade_mode_01" appears in the MQL4 and such Constant doesn't exist in the list.
I downloaded copy of the project for investigation, but if you want to fix the problem quickly, just replace that block.