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 2394
    • Best 420
    • Controversial 6
    • Groups 0

    Posts made by roar

    • RE: 3x MA - Odd Crossing Tolerance

      Your EA runs every tick, and moving averages also update every tick. That causes problems when the moving averages are somewhat flat.

      Solution: put "once per bar" somewhere, probably best just before the buy/sell blocks.

      I prefer to put the "once per bar" as the first block, and then use candle ID 1 in all conditions. That way you are always looking at the completed bar, and not the current, changing one. Of course that makes your bot a bit slower to react, but I think a winning strategy must be able to withstand that slowness anyway. Also boosts backtesting a lot.

      posted in Questions & Answers
      roar
      roar
    • RE: Compilation error ..

      Try exporting to .mq4 (.mq5) and use the metaeditor to compile. It will give a more detailed error report, telling which block is the problem.

      posted in Questions & Answers
      roar
      roar
    • RE: Who can explain the "what to get?" option of custom indicators?

      I think it refers to the different indicator "buffers".
      You see, an indicator can have all kinds of information to offer,
      for example, the default MACD indi can give you the main line value, and also the signal line value.

      posted in Questions & Answers
      roar
      roar
    • RE: "..Problem collecting data.."

      Okay, so the indicator itself is good..
      I can't think of anything, hope the admin can 😄

      On second thought, isnt "indicator apperar" the same as condition: indicator != 0

      posted in Questions & Answers
      roar
      roar
    • RE: "..Problem collecting data.."

      Interesting, this needs some further troubleshooting.

      What if you put your indicator to a condition block? For example, condition : indicator == 0 ?
      Does it compile ok?

      posted in Questions & Answers
      roar
      roar
    • RE: "..Problem collecting data.."

      You must upload the indicator to fxdreema.

      Check your "My indicators" menu, is it there?

      posted in Questions & Answers
      roar
      roar
    • RE: GAP

      formula:

      • candle close (ID 1) - candle open (ID 0)
      • remember to use daily timeframe in the formula

      then condition: formula result > yourGap

      posted in Questions & Answers
      roar
      roar
    • RE: Is this ok?

      They all execute on the same tick, no matter if there was 1000 horizontally connected blocks 🙂

      posted in Questions & Answers
      roar
      roar
    • RE: % profit for all trades...

      @drayzen said in % profit for all trades...:

      3 / 100

      just replace the "3 / 100" with your constant, type it there.

      AccountBalance() * yourconstant
      
      posted in Questions & Answers
      roar
      roar
    • RE: Custom indicator MACD divergences

      Custom indicators are usually hard to troubleshoot...

      I'd suggest start from the custom condition -> if true, draw vertical line. Then check the visual tester and see where it draws the lines.

      posted in Questions & Answers
      roar
      roar
    • RE: Source Code Fxdreema

      Check your project options

      posted in Questions & Answers
      roar
      roar
    • RE: on and off
      • Create variable "state"
      • When your event happens, check condition: state == 0
        -> if true, continue and modify state = 1
      posted in Questions & Answers
      roar
      roar
    • RE: Is this ok?

      "inp10_..." refers to block #10 - you dont even have block #10, so thats strange indeed.

      I am not sure about that TestGenerator error, it seems to be warning about your trade size (as you trade every candle and never close)

      posted in Questions & Answers
      roar
      roar
    • RE: Import or copy project

      If you have the project in the web builder, just open a new tab with a new project, and copy-paste the blocks.
      Importing .mq4 or .mq5 also works, but

      1. they must be made with fxdreema
      2. they must not be absurdingly big (like 300 blocks)
      posted in Questions & Answers
      roar
      roar
    • RE: Is this ok?

      The "once per bar" works only at the beginning of each bar, so the price is essentially the open price. That's why its not very beneficial to check both open and close prices at the first tick, because they are the same.
      I would use this logic:
      0_1524395134722_4dcda498-4cda-4fed-8b60-438fe64c41e4-image.png

      In English: once per bar we check the current candle open (current candle = id 0) and compare it to the indicator (blocks 5 and 6).
      If that condition is true -> open trade

      • Note that block 6 comes only when 5 is false, because they BOTH can never be true!

      Then check close price, and not current candle close but LAST candle close (id 1) (blocks 7 & 😎

      Note that this is somewhat silly logic because 2 of the 4 conditions must always be true - the bot trades 2 times every bar!

      https://fxdreema.com/shared/MXDDelZeb

      posted in Questions & Answers
      roar
      roar
    • My trash bin

      I played with objects today, and made some EA using regression channels.

      Its a huge mess. But there is something I like about this monster.

      Its not optimized in any way, but I thought why not share this, maybe it inspires someone.

      The project is so huge the browser builder doesn't seem to load it, so here's the .mq5 (compile it in your metaeditor)

      This works (least horribly) on EURUSD, M30. You can use open price -only testing, I designed that way.
      0_1524336136732_LINEAR2.mq5
      0_1524347440090_LINEAR2.1.mq5

      Part 2: Here's a simple project that "remembers" recent highs and lows, using slow macd. Next I'm going to implement the regression channel to this
      https://fxdreema.com/shared/BhZLMirre

      0_1524424247750_LINEAR3.mq5

      posted in Bug Reports
      roar
      roar
    • RE: Thank you fxDreema

      I agree with yalgaar. Radoslav you have built an amazing tool which sets no limits to my work. And what is even more admirable, you tirelessly continue to support and help the users through the years!

      Thank you fxDreema.

      posted in Questions & Answers
      roar
      roar
    • Objects in multi-timeframe projects

      A while ago I decided to stay away from drawing objects, but here I am again.

      My project will have several timeframes, e.g Weekly, H4, M30.
      I want my expert to draw an object to Weekly, but all the other work is done on faster timeframes - how can I set the correct chart for the drawing?

      Edit: This seems to be a deep, deep rabbit hole I am getting into. I managed to find the chart ID:s, but the MT5 strategy tester draws its own chart ID:s - so I couldn't visual test my bot even if I knew the chart ID:s. I guess its better to draw the objects to a single chart and just scale them properly.

      posted in Questions & Answers
      roar
      roar
    • RE: Phantom variable entries

      Yeah, I agree that is not very useful a feature - hope we could turn it off.

      posted in Questions & Answers
      roar
      roar
    • RE: Phantom variable entries

      If you hover your mouse on the variable field and roll the scroll wheel, it puts numbers there - maybe thats the issue?

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 107
    • 108
    • 109
    • 110
    • 111
    • 119
    • 120
    • 109 / 120