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: Triple EMA Crossover

      https://fxdreema.com/forum/post/24797

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: bollinger BUY and Exit

      Why you can't do it? On the picture you only show the buying part, there is no closing part. There is "Middle band" for bollinger bands, which is Moving Average anyway. So you can have something like "If trade - Condition - Close trades"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Where should i start?

      Ticks from start - this is how many ticks were registered since the EA started. 1, 2, 3 and so on... basically a counter that increments on every tick. You can't compare that value to Candle Open.

      But what do you mean by "few ticks up"? Ticks are those events when the price changes. Maybe you mean pips, not ticks. In this case you can do something like this:
      0_1544297627868_5f4a9a8f-2866-46f0-8f8b-0a81991964ef-image.png
      Candle Close is the current price, so this condition will pass when the body of the candle is > than 10 pips. Or maybe this, which should be the same:
      0_1544297729880_e560b23a-f124-4071-a547-1edff52183fb-image.png

      About the "end of the candle", I have to say this: https://fxdreema.com/tutorial/builder/things-not-to-do#1

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Having trouble

      I don't have the indicator, so it does nothing for me, but I can see something obviously wrong on the project. I tried to explain the problem here - https://fxdreema.com/tutorial/builder/things-not-to-do#2 In short, I don't like how those blocks are connected after Buy and Sell, they should be on their own chain of blocks.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Having trouble

      But what you tried so far?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Need Ideas for this situation

      I think you need to use some Variable to store the current states while the EA is working. The type of variable can be "int" or "string" if you wish, it's a personal choice.

      Otherwise more "professional" would be to have an indicator to make those buy and sell signals.

      By the way this is impossible situation:
      0_1543597465544_acd0558e-7583-44fb-bd4a-e46b47c8a019-image.png

      .. because blocks does not wait to pass. You may take a look at this example: https://fxdreema.com/demo/mt4-wait-crossovers But I don't think it will work well for your strategy.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: BUTTON ON CHART, TO TOGGLE BLOCKS OFF AND ON.

      I just posted an example in another topic: https://fxdreema.com/forum/topic/6505/how-to-work-with-the-buttons/2

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: please with my EA to create new alert when a higher/high, lower/low forms

      You are using some indicator? Maybe Fractals...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: I Use FXdreema Mq5 And Create EA But found big problem?

      @Moon, you also make sure that all the input parameters are correct. This is the main reason for that "indicator not handled" error

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Connecting Binary Options to EA signals

      I think you have mt2binary block already

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: how to work with the buttons

      https://fxdreema.com/shared/wMaMALJbd

      The problem with buttons is that they act more like switches, they are either pressed or de-pressed (down or up). They don't automatically move up when you press them and I don't know for an opton to do that.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Implementing MA and RSI indicator

      I don't know how to put MA over another indicator in the code in the way you do it in MetaTrader

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: My mq4 file problem

      When clicking on .mq4, the EA builder generates the code and you can download it. When clicking on .ex4, the EA builder generates exactly the same MQL4 code, compiles it using original compiler (metaeditor.exe) and you can download the compiled file.

      When something doesn't work as expected, take a look at the logs for error messages.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Open sell position when buy position reaches a specified loss

      Making a sell pending order when opening the position?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Stops being moved in the wrong direction

      At 14,15,16 SL is placed 12 pips below the Open Price:

      0_1543594813930_93d0a820-08be-4c84-ba93-1ccb30ebddaa-image.png

      That Open price appears to be the one from the original trade. You want it to be the one from the partial trade?

      I'm not sure that I understand the second question. There is hard SL created by the trailing stop block and when that SL is hit, the trade is gone, I think that is normal.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Write to file" block

      I see. Yes, I made some update before and it looks that I did it wrong. I removed flag FILE_READ, because we only write there, but without that flag the file is always overwritten. I think I fixed it

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Write to file" block

      What is the problem, only one row of data?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Average signals to buy/sell Strong VS Weak

      Here is some example: https://fxdreema.com/shared/JV7xeFcad

      I have the variables defined like that:
      0_1543389334409_4dadeae1-83a5-4263-90d6-0cb404946207-image.png

      Then in block 2 I reset the variable GBP before incrementing it. If I don't reset it, its value will go up every time.

      Block 3 is a loop, it runs block 4 (and 5) once for each symbol that I defined. And my symbols are:
      EURUSD,GBPUSD,USDCHF,USDJPY,USDCAD,AUDCAD,AUDUSD,AUDCHF

      These symbols are obviously not related to GBP, but I have them in my MT5. You can write yours.

      After that in the Condition I don't have anything for Symbol. It's because the Symbol is set from block 3.

      And then I increment the value of GBP.

      I can actually reset the variable in block 3 and increment it in block 4, so blocks 2 and 5 can be removed, but it's not bad if they are visible.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Average signals to buy/sell Strong VS Weak

      Do you have errors, such as "Error: Indicator not handled" ? I have those, but I think it's because in my MT5 I don't have some of the symbols that you are using. So I will try with symbols that I have

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Average signals to buy/sell Strong VS Weak

      I don't know why, but variables are missing (GBP and USD). Also, before incrementing their values, you should reset them to 0 I think.

      I would also use that block "Set Current Market for next blocks", but I tested it and for some reason it fails. I need to check why it doesn't work with it

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 34
    • 35
    • 36
    • 37
    • 38
    • 374
    • 375
    • 36 / 375