fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. fxDreema
    3. Posts
    • Profile
    • Following 0
    • Followers 691
    • Topics 32
    • Posts 7485
    • Best 277
    • Controversial 18
    • Groups 1

    Posts made by fxDreema

    • RE: label

      Try this: http://prntscr.com/cfjiho

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can the TP be "hidden"

      http://prntscr.com/cfjhvq

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: I need help but i do not know where to start

      Ask me about specific problem, because I'm not going to make a whole EA 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Suggestion FxDreema design

      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.

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: For each Trade

      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.

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: R: Currency Strength Block

      Isn't this job for some indicator?

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: I need help but i do not know where to start

      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

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Any explanation for a single missed execution of a condition?

      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.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Future candle

      Maybe something with "Once per bar" at the top? Or check the expiration settings in "Buy now" or "Sell now".

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problem with ID candles

      I forgot, in "Buy now" and "Sell now" there are expiration settings. Of course, this works only if the EA is working.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: self updating/refreshing grid, compare two groups of trades

      What, the problem happens when you add more than 17 EAs? What about memory usage, maybe MT4 is too greedy for resources?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problem with ID candles

      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 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: understand slippage

      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 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: TP and SL at RSI levels?

      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...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: OrderCheck() failed: Unsupported filling mode (10030)

      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

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Trouble getting my first EA to work..

      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)"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: self updating/refreshing grid, compare two groups of trades

      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

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can I insert external variables?

      https://fxdreema.com/demo/mt4-constants

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Any explanation for a single missed execution of a condition?

      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?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Checking last candle on every new candle's opening

      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.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 126
    • 127
    • 128
    • 129
    • 130
    • 374
    • 375
    • 128 / 375