Try this: http://prntscr.com/cfjiho
Posts made by fxDreema
-
RE: I need help but i do not know where to startposted in Questions & Answers
Ask me about specific problem, because I'm not going to make a whole EA

-
RE: Suggestion FxDreema designposted in General Discussions
I think that it's hard to work on mobile. I never intended to do that. The main website is kinda "responsive", but the EA builder itself is still designed for desktop only.
-
RE: For each Tradeposted in General Discussions
I don't know, I can't find Volumes indicator in MQL4's indicators list: https://docs.mql4.com/indicators Not even in the Indicators folder.
This <> is interesting idea, but I don't think I will make it. It can be dome with two Condition blocks. -
RE: I need help but i do not know where to startposted in Questions & Answers
About the different options - https://fxdreema.com/demo/mt4-constants - here is how you can define multiple input parameters for the EA. If you want to have some parameter that can be either on of off, make it with bool data type and value of true or false, then in "Condition" compare it with Value -> Boolean or with Value -> Numeric (1 or 0)
But if you want to make some kind of universal EA... you know, the reason why I decided to make a tool for EA generation was because I was tired of trying to write universal EAs :))I don't understand what the letter "v" means here "+30 v first order entry -20" and I'm losing the idea while reading the text. Note that my language is not english. But I have the feeling that this strategy would require many blocks.
I worked on some block to get the biggest loss and to eliminate multiple profit trades to cover this loss. This block was never published, mostly because it's one of these "I want one more feature..." blocks -
RE: Any explanation for a single missed execution of a condition?posted in Questions & Answers
Finally, this "cross width" parameter is useful for someone
I think I remember seeing problem like this before, but I don't remember what was the reason exactly. I also don't remember whether it was a bug or just a fact. If you understand why this happens like that, tell me. -
RE: Future candleposted in Questions & Answers
Maybe something with "Once per bar" at the top? Or check the expiration settings in "Buy now" or "Sell now".
-
RE: Problem with ID candlesposted in Questions & Answers
I forgot, in "Buy now" and "Sell now" there are expiration settings. Of course, this works only if the EA is working.
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
What, the problem happens when you add more than 17 EAs? What about memory usage, maybe MT4 is too greedy for resources?
-
RE: Problem with ID candlesposted in Questions & Answers
There are many options in the trailing stop block, including one Trailing Start that is used to "delay" the process of moving SL, but with pips, not with time. This block does not care about the age of the trade and there are no options for this. Trailing stop can be made with pink blocks (For eact Trade and so on...) like this: https://fxdreema.com/demo/mt4-loop-trailing-stop This example is pretty basic, but you can add "check age", you can prevent "modify stops" from modifying stops of the trades younger than X minutes. But I think you want to "delay" with pips, so try the Trailing Start option in the Trailing stop (each trade) block

-
RE: understand slippageposted in Questions & Answers
For modern brokers this parameter does not work anyway. Search something like "ecn slippage" and you will probably understand why. To be honest, I don't fully understand it, I only know that the slippage parameter is most probably useless

-
RE: TP and SL at RSI levels?posted in Questions & Answers
Maybe I did not understood the question before...
To close trades at any time, use "Close trades" block. Of course, this block should not run all the time, so you can use some Condition or something else BEFORE. There is no any reason to have Condition blocks at the end, because blocks run one after another.
So, if RSI > 30 => Close trades. If this is what you want...
RSI has values between 0 and 100. I don't think that this indicator can be used for Trailing stop. You can use any indicator that has values like Moving average (price values), but from 0 to 100... why...
-
RE: OrderCheck() failed: Unsupported filling mode (10030)posted in Bug Reports
For MT5, especially with the new Hedge mode, use the web version of fxDreema. The desktop version is not aware of this mode, it didn't existed back then
-
RE: Trouble getting my first EA to work..posted in Questions & Answers
I wrote an e-mail answer to you. I can see you have this indicator already added in "My Indicators". Then, in "Condition" select the indicator from "Indicator (My Indicators)"
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
I don't know. These days I'm out of my town and my internet is limited, so I decided to disable MT4 updates. Do you have error messages somewhere? If this also happens when you use other EA's (not from fxDreema), then I think this is some bug from MT4 or from Windows
-
RE: Any explanation for a single missed execution of a condition?posted in Questions & Answers
Put the SolarWind indicator into "Indicator tester" (Trace) and look how it works on Visual Mode (also add the indicator to the chart while testing). You will see that green/red bars are changing their height when they move from candle 0 to candle 1. I think this is the reason, maybe something specific happened and no crossover was detected, but then the bars look like there must be crossover there.
If setting Candle ID to 1 doesn't work for you, maybe setting Cross Width to 2?
Do you test this on "Every tick" mode?
-
RE: Checking last candle on every new candle's openingposted in Questions & Answers
Yes, 0 is the current candle, 1 is the previous candle and so on... 2, 3, 4, 5....
Negative values can also be used to get values that visually appear "in the future" from some indicators like Ichimoku.