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: Trailing Stop on last Bar

      @siggi copy-paste these blocks into your thing:
      https://fxdreema.com/builder/shared/mrzlwPjcb

      posted in Questions & Answers
      roar
      roar
    • RE: Candle breakout

      @yasirdxb

      1. Make sure trading is enabled during that one second you have set your EA to open trades. Most brokers dont allow trading around the rollover period (thats midnight on UTC+3), I don't know what timezone you are.
      2. Make sure your broker doesnt have a minimum distance for new orders. Some brokers doesnt allow placing pending orders too close to current price.
      posted in Questions & Answers
      roar
      roar
    • RE: need help pls

      @ralph are you backtesting or live testing?
      You should definitely be backtesting at this stage of the development, you will learn literally 1000x faster.

      Lets do an experiment. Strip down all non-essential parts of the EA, then run a backtest, then screenshot where it SHOULD have opened a trade and also send the current project link.

      I need to know what you expect before I can see what's the problem.

      posted in Questions & Answers
      roar
      roar
    • RE: Setting SL & restriction if

      @javed77 @l-andorrà actually it doesnt matter. The EA will only compare the blocks on top of the "trees", changing the block ID's makes no difference in this case.

      posted in Questions & Answers
      roar
      roar
    • RE: need help pls

      @ralph its the same EA, I only cleaned it, its the same functions.

      Take the time filters off and backtest again. Then add the filter, and see how it affects

      posted in Questions & Answers
      roar
      roar
    • RE: Hello friends, I would like to find some maximums and minimums, can you help me do this in fxdreema?

      You can actually simplify the project by using the mql5 code for the extremes. For example, the code for monthly high is:
      iHigh(NULL, PERIOD_MN1, 0)
      Weekly high:
      iHigh(NULL, PERIOD_W1, 0)

      Daily low:
      iLow(NULL, PERIOD_D1, 0)

      etc. You see the pattern.

      0_1587410611155_e1edc3cd-07f5-4733-9cbe-a7dd195cc13f-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: need help pls

      I made those cleanup fixes for you:
      https://fxdreema.com/shared/G7BXCCxgb
      This is still exactly the same EA, same logic and same trades, just in a simplier form.

      Another point: why you use cross conditions to close trades? Maybe simple above/below conditions are more efficient?

      posted in Questions & Answers
      roar
      roar
    • RE: need help pls

      @ralph a few tips:

      • You can delete the violet blocks, they dont do anything in this setup
      • You dont need multiple turn off blocks, you can separate the ids by a comma: 19, 20
      • You dont need multiple "close positions" for one condition. This block will close all positions anyway.

      But why doesn't it work as you expect, what is wrong?

      posted in Questions & Answers
      roar
      roar
    • RE: HIGH OF THE DAY, LOW OF THE DAY

      @ituinvests You need to create 2 variables to track the high and low.
      Here's how to update the high, for example:
      condition: current candle high > variablehigh
      -> modify variablehigh to current candle high.

      Use a hours filter to limit the opportunities to update that variable only on Asian session. Then use another hours filter (for london hours) when the EA can check if current close > variablehigh.

      Lastly, you'll have to reset your variablehigh and variablelow variables for the next asian session: when the asian session begins, set both variables to current price, so any price movements will get updated to the variables and the seeking for new asian highs/lows can begin again.

      posted in Questions & Answers
      roar
      roar
    • RE: close all when total profits reach

      @bliinkboy Take your keyboard and write it there. You can put custom code to anywhere. Anywhere. Just try it out

      posted in Questions & Answers
      roar
      roar
    • RE: Increase lots after x losses

      @jzfusion its a variable, you are not supposed to change it manually. You can control it with block 7. You can also make constants for the numbers 5 and 0 in the above picture so that you can manage them directly from metatrader.

      posted in Questions & Answers
      roar
      roar
    • RE: Increase lots after x losses

      @jzfusion You can tweak it here. For example, when over 5 losses, start over. You can put any two numbers you like, 5 -> 0, or 10 -> 5, or 3 -> 2, whatever you like:
      0_1587300776132_710e998b-ce6d-4092-9dc5-2abff2a65852-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Increase lots after x losses

      @jzfusion This is the sell side:
      0_1587299086237_1715ea4d-285d-441c-89e4-71faaa3e6b8a-image.png

      The consecutive losses block is just for figuring out the exact number of losses, when its work is done, we take exit from the yellow output and continue to opening the sell trade. You dont need second "sell now" block in any case.

      posted in Questions & Answers
      roar
      roar
    • RE: How to place buy on every candle?

      @tedhor07 This is what I meant for the SL:
      0_1587295807849_2b80a582-db2c-4a75-a60c-3cdba24b2acb-image.png

      By the way, sharing a project is easier done from the Projects menu.

      But I don't see any obvious mistake in the EA, I guess the HA coding itself has some bug. You can experiment the indicator by putting it into a comment block and running visual backtest..

      posted in Questions & Answers
      roar
      roar
    • RE: Increase lots after x losses

      @jzfusion baselot and multilot are constant numbers.
      Create these constants and variables:

      Constants:
      baselot = 0.1 (or whatever you like)
      multilot = 0.01 (or whatever you like)

      Variables:
      lost = 0 (variables always 0, they change it automatically)

      posted in Questions & Answers
      roar
      roar
    • RE: How to place buy on every candle?

      @tedhor07 you are using a price fraction SL, but the value is close price. Its a level, you should change the mode to level as well.

      Could you share the project?

      posted in Questions & Answers
      roar
      roar
    • RE: Increase lots after x losses

      @jzfusion its a variable
      0_1587293803210_502785af-c875-4001-9426-f985ffdf0152-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to place buy on every candle?

      @tedhor07 the picture is otherwise correct, can't find any problem. Its probably your custom indicator. I don't want to touch those.

      posted in Questions & Answers
      roar
      roar
    • RE: gap of certain pips after EMAs crosses

      Just use envelopes indicator. You won't get pips, instead a deviation factor, but its the same thing and the simplest solution.

      posted in Questions & Answers
      roar
      roar
    • RE: Problem - Modify Stop to break even based on ATR

      @l-andorrà just the settings in that block, direction and parent trade, its not very cleary stated what each setup will finally do.

      I'm sure the block works ok if you take the time to test and learn it carefully.

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 57
    • 58
    • 59
    • 60
    • 61
    • 120
    • 121
    • 59 / 121