fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Didble trader
    3. Topics
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 11
    • Posts 20
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by Didble trader

    • D

      Error code=4806
      Bug Reports • • Didble trader

      3
      0
      Votes
      3
      Posts
      1294
      Views

      fxDreema

      We discussed this and it appears that the problem is that because he loads the same indicator with different settings like in something like 100 blocks, this takes long time. For some reason MQL5 loads indicators slowly. And in the EAs I programmed MQL5 to load them on demand, which is not the official way of doing that. So I have a "while" loop that waits for indicator to load for 500 ms and then throw that error. So I changed that time to 5 seconds. Unfortunately I still don't know how to make MQL5 to load indicators more quickly.

    • D

      optimization an EA built with fxdreema
      Questions & Answers • • Didble trader

      1
      0
      Votes
      1
      Posts
      392
      Views

      No one has replied

    • D

      Different results between Optimization and single back test.
      Bug Reports • • Didble trader

      4
      0
      Votes
      4
      Posts
      965
      Views

      fxDreema

      @Didble-trader You can check the output code. But I never put anything intentionally to make the results different. Bugs are of course always possible, but it's important to say that some things are disabled in optimization - https://fxdreema.com/help/basics/testing-and-optimization-limits. Does the EA rely on chart objects?

    • D

      VERY VERY Stupid error!!!
      Bug Reports • • Didble trader

      3
      0
      Votes
      3
      Posts
      926
      Views

      fxDreema

      If I make it like this, it fixes the problem also for other timeframes:

      bool printed = false; void OnInit() { iClose(Symbol(), PERIOD_M1, 0); iClose(Symbol(), PERIOD_M1, 0); iClose(Symbol(), PERIOD_M5, 0); iClose(Symbol(), PERIOD_M5, 0); iClose(Symbol(), PERIOD_M15, 0); iClose(Symbol(), PERIOD_M15, 0); iClose(Symbol(), PERIOD_M30, 0); iClose(Symbol(), PERIOD_M30, 0); iClose(Symbol(), PERIOD_H1, 0); iClose(Symbol(), PERIOD_H1, 0); iClose(Symbol(), PERIOD_H4, 0); iClose(Symbol(), PERIOD_H4, 0); iClose(Symbol(), PERIOD_D1, 0); iClose(Symbol(), PERIOD_D1, 0); } void OnTick() { if (printed == true) {ExpertRemove(); return;} printed = true; Print("Value 1 = " + iClose(Symbol(), PERIOD_D1, 0)); Print("Value 2 = " + iClose(Symbol(), PERIOD_D1, 0)); Print("Value 3 = " + iClose(Symbol(), PERIOD_D1, 0)); Print("Value 4 = " + iClose(Symbol(), PERIOD_D1, 0)); Print("Value 5 = " + iClose(Symbol(), PERIOD_D1, 0)); }

      ... but it makes the EA to start slow and probably uses more resources, because it loads all timeframes. So I don't want to use this fix in fxDreema

    • D

      Working with "AND" function
      Questions & Answers • • Didble trader

      4
      0
      Votes
      4
      Posts
      2234
      Views

      fxDreema

      Error, what error? I tried the example above and I only got many many Buy trades until "Not enough money" started to appear

    • D

      Pips away from open price
      Questions & Answers • • Didble trader

      12
      0
      Votes
      12
      Posts
      5981
      Views

      jstap

      This is old, start a new question, add a shared link and say what seems to not be working...

    • D

      Where disappeared the function "Search" on this forum?
      Questions & Answers • • Didble trader

      2
      0
      Votes
      2
      Posts
      432
      Views

      fxDreema

      Don't you have this gray magnifier icon up near the bell icon? (I don't know why it's gray)

    • D

      Needs of new funciton
      Questions & Answers • • Didble trader

      2
      0
      Votes
      2
      Posts
      378
      Views

      M

      https://fxdreema.com/shared/xKXXTNiId

    • D

      collect/remember Close/open value of previous bar
      Questions & Answers • • Didble trader

      4
      0
      Votes
      4
      Posts
      797
      Views

      M

      This is my problem:

      https://fxdreema.com/shared/0NsTvyhCc

      https://postimg.org/image/5ltfzbsar/

      Please help to understand this problem.

      because price values is better comparing with "<, or >" and not with "==" ... you can try change it that way (avoid to use "==") ...

    • D

      true/false
      Questions & Answers • • Didble trader

      5
      0
      Votes
      5
      Posts
      1091
      Views

      fxDreema

      Both Condition would work: http://prntscr.com/btf6cu

    • D

      One parameter for Buy/sell now
      Questions & Answers • • Didble trader

      2
      0
      Votes
      2
      Posts
      408
      Views

      fxDreema

      Constants (Inputs): https://fxdreema.com/examples/#Constants-and-Variables

    • 1 / 1