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: two condition to meet ( in order)

      What amount of time separates both crosses? Do they happen in the same candle, on in neighbor candles, or there can be 10 candles in between, or infinite number of candles?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: MT5 VA MAL

      Give me some EA so I can test it here. I can't say what is wrong just like that. But yes, MQL5 is more unpredictable and often when there is a problem, I have more troubles to find how to fix it. I want some EA that will stop working on my MT5 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can you establish a curce of moving averages in two time frames

      Can you provide picture of what you need to do, because I can't really understand what is the question?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: After profitable position pass n position

      You have "No trade -> Condition" under "on Tick" and until new trade is created and the rules in Condition are true, these blocks will continue to pass over and over again. Then you have the counter, which will run multiple times very quickly and is useless. Not to mention that both of your conditions can be true over and over again multiple times in the same candle.

      Also, you have this buy-sell-buy-sell configuration where the existence of trades controls the whole process. You want to somehow skip trades, which breaks the whole idea.

      I made this - https://fxdreema.com/shared/zcOfXb3Pc

      This has 2 variables. To control the buy-sell-buy-sell process I use one of the variables instead of Buy and Sell trades. The top part of this is almost the same as this example - https://fxdreema.com/demo/mt4-buy-sell-buy-sell-opposite-conditions - but instead of trades I'm working with the value of the variable, so the variable can be either "buy" or "sell".

      For the main conditions I'm using MA, because it's easier for me to see what is going on in the chart. But I use the previous candles, because if I work on the current candles I notice multiple changes between "buy" and "sell" at the same candle. Those Draw arrow blocks draw some arrows, so you can see the final signals - white arrow for buy and red arrow for sell.

      Then over this strategy I have the other strategy that involves counting consecutive profits and making trades. Even I am confused of what I did 🙂 But it seems to work. Here is what I got:

      0_1552239520162_73f08fbd-5a37-4ade-954d-e44cae4b16f2-image.png

      To add this EA in your projects, download it as .mq4 file and then import that file.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Price today 10AM higher than yesterday 02PM. Then buy !!! How can I do that?

      @patermike When you set Candle ID to 19 (in More settings)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Two line cross over

      For finished crossover, use Candle ID = 1.

      For ATR stops, use Custom (price fraction) instead of Custom (pips). I call these values such as 0.0010 price fractions, because if you imagine all prices in a vertical line, small part such a 0.0010 is like a fraction of the whole... if that makes sense 🙂

      The condition block should not care about past signals at all, this block check the values at the current moment only. I don't see reason for it to work 2 times and then to fail. Check if you have any error messages. Also put Trace block to see the actual indicator values, in case something is wrong with the indicator. It also depends on other blocks, if you have

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trailing stop after sometime of opening trade

      Instead of the trailing stop block put the pink "close" block. But in fact in the Buy/Sell blocks there are expiration settings, so you won't need the right part

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: MT5 VA MAL

      What is the problem, error messages?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trouble with opening buys with a custom indicator (arrows)

      < 100 should be the same as > 0 in this case, because if any of the sides of Condition equals to EMPTY_VALUE, the block doesn't pass.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: how to build a layer on ea martingale

      Try with Buy and Sell blocks instead of "add to volume"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Draw Shape on condition

      I feel that you want to control the same object, to change its color multiple times. Try this:https://fxdreema.com/shared/CGpYT0LSb
      What I changed here is that I use name for the object. Without this, each block creates and controls its own object.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to do buy stop above 10pips hi candle bull

      I don't know which candle you want to use, but it sounds to me like something like this:
      0_1551890149760_8e52a612-f031-4d2a-9788-1de2001e8f1d-image.png

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Need help backtesting

      This is mystery for me as well, the data in MT4 always have some problems. You can delete some files and folders where the data is stored, but who knows. Now I wonder whether the brokers will keep providing old data, because they stopped working on MT4 it I'm not wrong

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: can i add custom indicator

      Some indicators are not correctly recognized by fxDreema, sometimes it happens that input parameters are wrong. Is this your problem?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Price today 10AM higher than yesterday 02PM. Then buy !!! How can I do that?

      I was going to suggest this:
      0_1551889354624_4aa9a900-4f71-4847-8c4a-cf9057fa0742-image.png

      But this one uses the current day. Maybe if you are using let's say H1 and you get the value from... I think it's the 19th candle in the past. This will not work correctly if the day is Monday of course.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Reverse order with martingale

      This is what I made (using 0.05 lot instead of 0.5): https://fxdreema.com/shared/ZxmYpIOtd

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How put Profit amount in Variable?

      Not exactly. I expect this to fail the first time it runs, because the order of the blocks is like this - 147, 148, 149. After that it may work most of the time, but better connect the bucket blocks one after another.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: DESCARGA

      The question is how to download for MT5. I see you already have MQL5 project, so you found the way. It's interesting that I'm getting this question more lately

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: I'm having a compilation errors

      This is not the same problem that you have now. Now the problem comes from "Adjust" fields, but I don't really know how you got them. In your previous project I can find this situation:

      0_1551883635688_9c2bafe5-0a08-4155-8b53-cfefba58ed3f-image.png

      In your current project I see this:
      0_1551883669967_ba905659-a931-4bfe-8bd1-4f6583493959-image.png

      Even these 2 problems are not exactly the same. What do you want to do in "Adjust"?

      By the way, to fix the problem in the previous projects, open Custom (price level), fix or remove the Adjust field and then go back to the original setting. The thing is that each block has more input parameters than what you can see, some are invisible, but still there.

      To fix the current project just remove that . symbol after *2

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: I'm having a compilation errors

      I think I fixed it, try it

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 20
    • 21
    • 22
    • 23
    • 24
    • 374
    • 375
    • 22 / 375