fxDreema

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

    Best posts made by roar

    • RE: Having trouble creating a MT5 EA even after converting it from MT4.

      Haha awesome!

      posted in Questions & Answers
      roar
      roar
    • RE: Here, take this profitable ea

      @seb-0 well, I do optimize some times, but much less than before.

      To my experience, with optimization you can make any EA look super good. Whats the point... the performance will not repeat in live trading.

      So, if the EA doesnt look promising with random inputs backtest, I dont usually bother to force it look good with optimization.

      Its 98% about the strategy itself, 2% about the input values.

      posted in Tutorials by Users
      roar
      roar
    • RE: Mql5 EA build

      I can't test the .ex5 right now, got an optimization running..
      Please use the windows snipping tool to put a picture, or share a copy of the project:
      0_1549307479441_a6e39f48-ce0f-4a15-9b4d-9a220d05d46b-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Here, take this profitable ea

      @DanZig55 I have used those 3 bullet points in many EAs.

      posted in Tutorials by Users
      roar
      roar
    • RE: Mql5 EA build

      @spicynote
      This will need some fixing. Remember that the ea algorithm runs on every new tick (as we are "on Tick").
      Now it checks every tick if the candle is above MA 60, and if that is TRUE, then it buys.
      It will not open new buys (even if price is above MA) before we wait 2 bars, that's what the "every n bars" does.
      You shouldn't put any closing conditions after the opening condition - that means that you want to close the trade on the same second you open it.

      I'll make a working example in a minute

      posted in Questions & Answers
      roar
      roar
    • RE: Here, take this profitable ea

      @l-andorrà I just used them for troubleshooting, should have removed from the shared version

      posted in Tutorials by Users
      roar
      roar
    • RE: Mql5 EA build

      @spicynote
      Here: https://fxdreema.com/shared/Y3lUXgVrb
      Moving backwards in time is best done with the candle ID.
      ID 0 = current, updating candle
      ID 1 = latest completed candle
      ID 2 = 2nd completed candle
      etc.

      Connecting blocks vertically means "AND".
      I connected 2 blocks with condition: "candle close is above 60 MA", with different candle IDs, so the combination reads as "latest candle is above 60 MA, AND the one before it is also above 60 MA"

      posted in Questions & Answers
      roar
      roar
    • RE: Easy way to make ENUM

      @BBMess MA method is always an enumeration by itself, that might cause problems.
      https://www.mql5.com/en/docs/constants/indicatorconstants/enum_ma_method

      Please send a shared link of your example

      posted in Tutorials by Users
      roar
      roar
    • RE: Candle size

      Use the block "modify variables" and from there select candle -> candle total pips

      posted in Questions & Answers
      roar
      roar
    • RE: Here, take this profitable ea

      @richard96816 Agreed, fxdreema has some very versatile functions. It's very good to see other's ideas too, avoiding "tunnel vision" with the alone development.

      Some say that sharing good eas doesn't happen because nobody would give away free money like that. I don't believe that approach at all - no matter how profitable your system is, there is always a risk present with trading, and the risk is higher if you don't even know the system you are using. So you have to learn the system, and thus you can also develop it further. Collaborative effort is the way to go

      posted in Tutorials by Users
      roar
      roar
    • RE: saving lot size in variable

      @jennifer
      You can put custom code pretty much everywhere in fxdreema, like this for example
      0_1550075949968_11d95549-b5ad-4c54-9613-50b06213360d-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: how i do that in fxdreema in equity ?

      @moon
      We update the PreviousBalance variable at the point when there is no trades.
      When there are some trades, compare the current equity to the previous balance. If it is 100 units bigger, close trades

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

      How to troubleshoot an error like this:
      0_1551374448297_492f6680-83c2-4ba4-b55f-128c2fdeafcb-image.png
      Hmm, inp43 = problem is block 43, left operand, something about timeframes...
      Lets check the block in fxdreema:
      0_1551374527709_e877c58b-98f5-448a-9b63-06c7f2d1b54c-image.png

      Hmm, maybe I should untick the timeframe box:
      0_1551374572432_1fa1e449-acfe-4122-88a3-2a80cc35a98c-image.png

      voilà, no error anymore! To the next error ->

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

      0_1551374682739_45d37db8-ca27-43d0-8c20-2ec126d99af9-image.png

      This error can be more confusing, as the stop-loss doesnt seem to use any timeframe:
      0_1551374703277_d599c54e-980e-4f63-bd06-0a661fa1bec8-image.png

      But it is hiding in the drop-down menu, "Custom (pips)". Uncheck that timeframe box. No error!
      0_1551374885435_03c1635f-427f-4a00-a232-53f4501a6764-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: How to make that Close Condition !

      @l-andorrà I wish I was a real programmer lol. I don't even know the basics of mql.
      I just copy from mql4 articles, try and fail and try again until I get my result.
      Thats the beauty of this program, you can teach yourself

      posted in Questions & Answers
      roar
      roar
    • RE: Break even ?

      yes, with 2 blocks 😄

      posted in Questions & Answers
      roar
      roar
    • RE: Break even ?

      @zackry It is to filter how far your trade is from the break even point.

      If you set 0, the break even will always be set if your trade is on profit.
      If you set 10, the SL will move to break even only if youre 10 (or more) pips on profit

      posted in Questions & Answers
      roar
      roar
    • RE: Break even ?

      @zackry ok, just set it to 0, so the amount of profit will not matter.

      You can't set a breakeven on a losing trade

      posted in Questions & Answers
      roar
      roar
    • RE: Break even ?

      @zackry Yes, that should work, now just test it with visual backtest 🙂

      posted in Questions & Answers
      roar
      roar
    • RE: Break even ?

      @zackry yes, should work

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 7
    • 8
    • 9
    • 10
    • 11
    • 20
    • 21
    • 9 / 21