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: help

      Hm... it should work only with "contains" 😕

      I think that discarded results does not depend on input parameters or the EA contents, maybe for all those passes there is no profitable results? Insignificant probably means that the result is not profitable. Here is something that I found: http://forum.mql4.com/20578

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Feature Request - Project Search & MQL Custom Blocks

      I have updated it, so now it renames constants/variables in parameters in all blocks...hopefully. I wonder about titles and descriptions (for areas), now those will remain unchanged.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Block Titles Don't Stick

      Look at the Action History for new event when saving titles. If it appears, the new title should be saved. If it appears and you see the old title, then it's probably some bug... in this case tell me more information if possible - what is the title, special symbols, things like that?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Feature Request - Project Search & MQL Custom Blocks

      I can check if the local version supports Find, because it is actlually a real Chrome browser packed into an .exe file 🙂

      I wonder how can I output results in this Search and Replace in block parameters, but otherwise you are right, at least Constants and Variables must be updated when they are renamed and used with their real MQL names. Otherwise when you rename them and they are added with right-click, there will be no problem.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: _Time Function doesnt correctly calculate Components time

      This does not return the value of 30 (minutes) *60 (seconds), which is 1800. This returns Unix timestamp, as it is here: http://www.epochconverter.com/
      Here is some example where you can see the exact value: https://fxdreema.com/shared/p8XrtPeYd

      If you want to add 30 minutes to some time, 30*60 will work. And if you get the time from Condition->Time and you want to add minutes to this time, look at the "Shift in Time" option below.

      By the way I found problem with Components part in Condition->Time and I fixed it. I was using some cache before (using static variables) to make it faster, but now I realized that I was missing something and when the day changes the value does not change... so I removed that cache.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Variables Type Drop Down Consistency Issue

      Fixed on the web version 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Local version - internet required - request :)

      We are al least small country with almost empty villages and people are packed in and around towns, now I feel better because of that :)))

      You don't know how much I don't like this local version, because it creates many different problems - the program I use to create it has bugs, the fact that people are using offline database means that I can't update those files easily when I do some upgrades, also when someone is asking me for help I can't see his project (which is why people wants to use it anyway). And I like web apps, not desktop. But I started it back then, now what can I do 🙂 Maybe most of the questions now come from people using that local version 😕

      Yes, it can be used offline, test that. Wait for 5 seconds and it will log in. But don't change the clock, if you go back in time the information will be cleared, if you go ahead - you will miss some days. But if you have problems like this - log in normally once and they will be gone.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problem with conditions

      You can use this "Indicator tester" block to see any numeric thing as a line (or numbers below the candles). Maybe this can help: http://www.mql5.com/en/code/8198. I didn't tested it, but it looks simple so it should work 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Local version - internet required - request :)

      I live in the poorest country in Europe and we have internet everywhere. Internet from Wi-fi around, Internet from mobile phones, Internet from those usb gadgets that also use SIM cards like mobile phones. To login in fxDreema requires maybe 3-4 kb of data and then it works totally offline until it's closed. I don't really understand how can someone can be somewhere without tiny tiny tiny bit of internet and work with programs (MetaTrader) that normally need internet connection to run 😕

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problem with conditions

      Interesting... it looks that weekly and monthly data can't be accessed when backtesting, it returns 0. It's ok on real testing, so I probably need to add some function to calculate weekly and monthly data based on daily when backtesting 😮 Those russians are always missing something.
      http://forum.mql4.com/57611

      I don't know when will I do that fix, but for now if you don't care about mondays I can suggest to look at the last 7 days:
      https://fxdreema.com/shared/Imrkebc3

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problem with conditions

      Don't use "==" to compare price levels, ever. Use anything else, because the chance to have two prices exactly the same is small, especially when prices are like 1.23456. There is no guarantee that you will receive tick at price 1.23456. The tick can contain price 1.23455 or 1.23457 which is similar, but not exactly the same! Prices are not like 1, 2, 3, 4, 5.... they are like 1, 2, 4, 2, 6, 7, 9...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to write to a csv file and where to find it?

      Use Search (in Windows) to find the file

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Local Version - Project Options Timer Event Period Save

      My fault, it seems that settings are not updated at all. I reuploaded 082 now, you can try it. I'm currently working over trailing stop blocks, but I'm not finished... so if you notice problems with this now, tell me... just saying 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Calculation-problem with Lotsize: mql4, local version 082

      You can always define some Constant and use it inside the project everywhere. All Constants are input parameters for the EA that can be optimized... they are global variables actually, but think of them as constants. If it's a numeric with value 2 and name MyConstant, use *MyConstant instead of *2.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to open new trade in the same direction when hit SL

      There is a parameter "Group" on the top of all trading blocks. This parameter can be any number like 1, 2, 3... the default is 0 (empty is 0).
      Magic number = Group + MagicStart
      where MagicStart is input parameter for the EA. So when Group is 0, the magic number is the same as MagicStart.

      I can't understant the question about ticket. But you can detect when a trade is gone... depending on the strategy. You can check for how many trades there are at the moment and react on that, this is the best method. Or work with "on Trade" event.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: The strategy from scratch questions and problems

      Now I decided to add option in Trailing stop blocks to make them reverse, instead of adding brand new blocks that are basically the same with few "-" signs here and there. But I will leave this block for now if you want to try it, and later I will probably remove it.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: The strategy from scratch questions and problems

      I added block "Trailing profit (group of trades)", and it have "money" option for trailing profit. There is also an option to recalculate (or not) take profits when there is new trade in the group.

      I think this block will work for you if you place it after Buy now or Sell now, so it will be executed only once when a new trade is created (you don't need to trail all the time).

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Can you tell me how to write to MQL5 this loop order?

      This depends on too many things these days: topic/2374

      And what is that conversion error, isn't it just a warning? If it is "possible loss of data due to type conversion" - this is not fatal. There are warnings and errors. Errors are fatal, warnings are only annoying messages.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to open new trade in the same direction when hit SL

      There are another pink blocks that you can put right after "For each Trade", for example "check profit", "check loss". Also, you can use Condition here with all the option in "in loop" (also in pink color).
      Also, there is a block named "Check last closed trade profit" if you don't like those pink blocks.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Can you tell me how to write to MQL5 this loop order?

      I can load .mq4 file generated from https://fxdreema.com/shared/1pqRSQkdb in both, web and local version. But anyway, I think it's not that hard to make some 4 blocks manually, this can happen in less than 1 minute.
      I don't understand the last question 😕 Who will manipulate stops at the network? 😮 And what network?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 282
    • 283
    • 284
    • 285
    • 286
    • 374
    • 375
    • 284 / 375