fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. roar
    3. Posts
    • Profile
    • Following 0
    • Followers 184
    • Topics 35
    • Posts 2406
    • Best 422
    • Controversial 6
    • Groups 0

    Posts made by roar

    • RE: How to close these orders?

      @ambrogio Use "for each trade" loop, and just modify the looping direction and "not more than n" setting.
      0_1579970549501_1370bd69-adb7-4e27-8273-f6ca83ffb75b-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Loading EA .ex5 to MT5 fails in Visualize/Genetic Optimization

      @rhang Sounds like a missing custom indicator

      posted in Questions & Answers
      roar
      roar
    • RE: Add more than two variables

      @jaychyke said in Add more than two variables:

      Please may I ask if the calculation is based on the last 15 candles?

      Yes it's 15 by default, but you can change it from inputs:
      0_1579880672801_d3c418de-3d9d-4f84-a8a1-b98f7bce1f0d-image.png

      Again, which names will the upper and lower lines be identified with by the EA: "upper bound" as named, or upper range as coded?

      "Upper bound" is the name of that graphical object, "upper range" is the name of the numerical value the object is based on

      0_1579880858059_a0da5ffd-692c-4c7e-a8f2-897ca34dabba-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Add more than two variables

      Ok so I actually got very excited about this and figured out the whole thing:
      https://fxdreema.com/shared/UeNF7iqdb
      Seems to be working:
      0_1579814704313_f8a127c5-448e-45af-b440-2b564af6d9c9-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Add more than two variables

      You dont need individual variables for each candle, and that method is a bit difficult to scale anyway. First rule of coding is to never repeat yourself. (well thats what I have heard, it's not like I'm some professional coder)

      Use an array! You will have to study a bit, but you really cannot avoid some work given that goal.
      Google mql4 array for instructions.
      https://docs.mql4.com/array

      posted in Questions & Answers
      roar
      roar
    • RE: Change position of pending order

      @fabien-s Use the "slide order" block. You will need some testing to learn how the mechanism works.

      posted in Questions & Answers
      roar
      roar
    • RE: How can I protect profits from returning to loss?

      @khalids222 Ok, break-even block should do exactly that.
      You have to switch the blocks in your example.

      0_1579803329173_25cc8a42-4505-424e-95b2-0b4169991243-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How can I protect profits from returning to loss?

      @khalids222 If you allow me to get a bit philosophical here, you really can't avoid losses altogether. When trading, you are exposed to a distribution of wins and loses, big and small. This fact doesnt change when using different strategy. Strategy can only change the return sizes - maybe many small wins and sometimes a huge loss. A trader can only hope that the average sits a tiny bit on the positive side.

      For closing most trades at a profit, I often use to partially close some trades at RSI 70 (and RSI 30 for sells, respectively)

      posted in Questions & Answers
      roar
      roar
    • RE: HELP REALLY NEED WITH MT5 EA

      @leonardo-1 It's not cheap to develop and maintain a software such as this, you should buy it if you plan to use it.

      https://fxdreema.com/shared/1hIntlu8d
      This version has 9 connections, you can compile it yourself đŸ™‚

      posted in Questions & Answers
      roar
      roar
    • RE: HELP REALLY NEED WITH MT5 EA

      @l-andorrĂ 

      If so, why not just using 'Once per bar' blocks with those same specified TF instead?

      Yeah could put the timeframe inside the blocks just as well. This way is just a bit easier to understand for a newbie, I think.
      I also prefer to use the individual TF blocks if I have lots of blocks belonging to a particular timeframe.

      posted in Questions & Answers
      roar
      roar
    • RE: HELP REALLY NEED WITH MT5 EA

      Here:
      https://fxdreema.com/shared/lEFKiMwre

      posted in Questions & Answers
      roar
      roar
    • RE: wait after closing trade

      @turelforex My solution is actually BS.. It checks for open time, not close time.

      Here's some solutions for the delay:
      https://fxdreema.com/forum/search?term=delay&in=titlesposts&sortBy=relevance&sortDirection=&showAs=posts

      posted in Questions & Answers
      roar
      roar
    • RE: HELP REALLY NEED WITH MT5 EA
      • Use "once per bar" on top of everything
      • Use "set current timeframe for next blocks" to change between M5 and H4

      Otherwise this is just putting condition blocks one after another, very simple. I'm too lazy to do the whole EA for you đŸ˜„

      You can share your progress via the projects-menu top left

      posted in Questions & Answers
      roar
      roar
    • RE: wait after closing trade

      This setup puts a 2-bar wedge between trades:
      0_1579527684874_62ad3372-ee5c-4e6e-a5c5-61a2fd8e1f03-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Lot Size = Percentage of Balance in Martingale

      @bogdaiki Hi,

      you can insert you balance anywhere by using the mql4 function balance().

      This uses 1 lot for every 10000 in balance, adjust the factor to your liking.
      0_1579515036316_19248e9b-33f1-4e2f-b282-da68533564d2-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Help on Trailing stop block appreciated (SOLVED)

      @l-andorrĂ  I have a feeling this is unnecessarily complicated approach đŸ˜„
      Why doesn't "% of profit" work as a solution?
      What do you mean by "11% of open price", isn't that like EURUSD crashes to 0.1234 ?
      0_1579452288615_32acadd5-4776-43ee-9534-926f3d47f370-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: basic ma touch

      @fabien-s Are you testing open prices only?

      posted in Questions & Answers
      roar
      roar
    • RE: My own expert advisor

      @srgsegseg said in My own expert advisor:

      How can i downlaod 5 years of history ?

      Press f2 to open your history center. Or use mt5, its better for backtesting overall

      posted in Questions & Answers
      roar
      roar
    • RE: My own expert advisor

      0_1579443372350_d194555e-c1cd-44c4-92ea-2373fe19c7f6-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Coders! I am asking for your help Please.

      @alphaomega Hi!

      Mql4 code can't be imported into the builder, unless the code is made with fxdreema. This whole system must be rebuilt from scratch..
      It probably would be easier to work with a written strategy description, rather than the code.

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 70
    • 71
    • 72
    • 73
    • 74
    • 120
    • 121
    • 72 / 121