fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. fxDreema
    3. Posts
    • Profile
    • Following 0
    • Followers 691
    • Topics 32
    • Posts 7485
    • Best 277
    • Controversial 18
    • Groups 1

    Posts made by fxDreema

    • RE: Trend Lines

      It's not impossible, but I have to create a block for it 🙂
      Otherwise as a function it's something like this:

      ObjectCreate("Name", OBJ_TREND, 0, Time[10], Bid, Time[0], Bid);
      ObjectSet("Name",OBJPROP_RAY,0);
      

      Where Time[10] is the time value for 10th candle in history, and the second row tells that the trenline has beginning and end (otherwise it goes to infinity)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Condition Using Historical Data

      Ummm... you have 3 blocks, two of them are connected and one of them is not. In fxDreema not-connected blocks are not included to the final file. Just connect it like other two are connected - drag orange circle to white circle.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Local version 056 - compilation error

      Nice. And this happens when the same variable name is defined in Variables and Formula block. It will be fixed.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Condition Using Historical Data

      Levels tester is only to check what is going on, normally it should be on top level (to show you everything), but in this case it can be used this way.
      Block 2 looks disconnected to me, it will not be added to the final project.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Condition Using Historical Data

      I don't know, I never tested with so much candles, so if you do it - check twice if all values are ok before using them.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Local version 055 - odd behaviour of copy paste

      Thanks! I fixed that for the web version, it will be ok for the next local build. The problem comes from that non-numeric ID of block "No123", but I have to rewrite the whole copy/paste system, so there will be more changes to this (which I hope no one will notice). You also have 1 extra month... bonus 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Local version 055 - odd behaviour of copy paste

      Something special with those 5 blocks in "on Tick" that is specific only for them - the same symbol in their names, id numbers?
      If you can send me copy of project like this where this can happen, it will be the best.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Condition Using Historical Data

      Start candle should be the one with lowest ID. Better select specific timeframe. Adjust is fine, it should work, but candles to be used are so many, so check for error messages eventually.
      Check "Levels tester" block, it's near the top 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: copy and paste

      And I think it's working already. If not, try to reload the page.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: copy and paste

      topic/2169

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: copy and paste

      Yeah, it looks like something is not ok, I will check that immediately. Thanks for reporting that!

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Local version 055 - odd behaviour of copy paste

      If this is a new block that can work, then it looks that it is copied with connections - this block is connected to blocks in different section, which normally is not allowed, but is possible. I still can't replicate it (actually other bugs happens to me), maybe there is something specific in your project that causes the problem or some specific step-by-step actions, but I think if you detach it, it will work (right-click - Detach).

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Condition Using Historical Data

      Whooo, 5-years, here I smell history data issues. In my backtester the biggest TF is Daily, on live it is Monthly, but knowing the numbers of candles to use... check in Condition, somewhere in "Market properties" for highest/lowest price for candles period (also choose timeframe there). You can also create a custom block for these calculations, otherwise Formula blocks should be used. And use calculations in "on Init" if there is no need to reaclculate often. But if you know the actual highest/lowest prices and you can write them manually, I recommend to use them directly. 5 years is so big period, that somehow does not deserve calculations. And once when you reach price over/below the limits, then you work on lowest scale, but of course this depends on the strategy.

      In case you are interested in coding, here are the functions that currently calculate highest, lowest prices:

      http://fxdreema.com/documentation/colle ... hestfromto
      http://fxdreema.com/documentation/colle ... westfromto

      well, they are a little bit complicated, but if you understand coding a little, you can perhaps get the idea 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Local version 055 - odd behaviour of copy paste

      It works as expected on my platform, but if you have some way to show me the problem, I will check it 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Renko bars

      Unfortunately I don't have working Renko bars here, this was always a bit confusing for me, but as I remember offline chart is used. Can you confirm that the EA is working at all on these charts? Once I added options to work with offline charts (Options->Project Options), but I have to refresh my mind about how this worked... Now, is the EA working actually?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Want to code my semi martingale approach. Is this possible?

      There are different ways to do that. The simplest is to use the block "Buy now (Custom Martingale)" and/or "Sell now (Custom Martingale". These blocks handle Martingale by themselves. In future I think I will remove the whole betting category and I will add these money managements in "Buy now" and "Sell now" as options.

      And the other way is making it more open and detailed (using more blocks and variables). Today I helped someone else with this example: http://fxdreema.com/shared/f9fYbbupc

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Normalize IDs - thank you! :)

      I can suggest to give these blocks name that is text, not numeric ID. Yes, it's possible for block ID to be some text, and this text will not be changed after normalize. And it will be more meaningful, but use IDs without spaces and special symbols - only latin letters and 0-9.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: MQl5, Local Version 054: One Checkup do not work?!

      Get this now: http://fxdreema.com/desktop

      I hope it will work. Thanks for reporting that!

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: pending orders

      NormalizeDouble() problem 😕 Fixed, and thanks for the report!

      I modified the project a bit, check this one: http://fxdreema.com/shared/7uiuj8mZ

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: pending orders

      Project ID (or name) that I can check?

      posted in Bug Reports
      fxDreema
      fxDreema
    • 1
    • 2
    • 327
    • 328
    • 329
    • 330
    • 331
    • 374
    • 375
    • 329 / 375