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: Time bomb back testing

      It is not passed, but the seconds you have in the Tester are not accurate. The lowest timeframe is 1 Minute and all ticks inside that minute are generated. Their time is simply fake 🙂

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

      There is no % option, but the option is in money... dollars. As you probably know, you can use native MQL functions in all input fields. So the default value is 0, but you can put something like:

      AccountBalance() * 3 / 100.
      

      AccountBalance() gives you the current Balance, the amount of money you had before opening the trades. Let's say that the balance is 1000, then 1000*3/100 equals to 30 (dollars) 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: trades counter by time

      Isn't this a problem with the copier? Where do you use fxDreema EA in this scheme?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: FXDreema for MAC/ISO

      Because we communicated in email, I can say for the other people that the problem is from Norton. I had similar report before where some Norton extension for Chrome blocked one of the JavaScript files of the file and I saw the problem, but I could not find the reason. Well, I didn't tried so hard, but these days I will take a second look.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Add volume

      By "add to volume" I understand opening more and more trades and actually increasing the Buy or the Sell position. Normally this also has negative meaning, because it is well known that people often add more and more lots while losing, to cover their previous losses, which sometimes leads to margin call 🙂 Otherwise pending orders are just potential trades in the future, they don't have actual volume until they are triggered.

      This is what I was thinking - https://fxdreema.com/shared/A5VpH9l1e
      Here is how one of my order is triggered, became a trade, then closed by TP, this triggered "on Trade" event and in "on Trade" a new pending order is created with the same parameters as the trade.
      0_1523126340500_03c1ed8a-11d1-4a61-a727-f8097e2b6201-image.png

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Does your fxDreeema work properly for both Live and Demo accounts?

      By "Demo" you also mean live, not backtesting? Do you have error messages?

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Compilation errors

      Try it now

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: How Do I Save

      Normally you see the Save As window asking you to browse to the folder where to save the file, the same as when you are downloading a file from somewhere else. Only for Chrome there is a plugin (extension, app, whatever you call it) designed to remember where the file is stored and automatically write it the next time without showing the Save As window again.

      If for some reason you see only "compiling..." and nothing else, no Save As, nothing, then the problem could be that some extension in your browser is blocking some of the JavaScript files of the website. I had reports and I know that some people have this problem, but it's one of those problems that is harder to investigate.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: block of "Buy / Sell pending orders in grid" with error

      Wait, it is Saturday and markets doesn't work. Does this happen in the Tester? And what Symbol is this?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: block of "Buy / Sell pending orders in grid" with error

      Oh no, the stupid MQL5 again with its meaningless errors. I will see what can I do. What broker do you use?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: how to declare parameters for custom blocks

      If you have one of those "Custom" parameters, in the code you should use them like this:
      0_1523112369683_f16a90bc-b97c-465e-8b50-1844993504b9-image.png
      This is actual code of the "Indicator is visible" block.
      That ~datatype:Indicator~ thing is not necessary, you can use double or whatever you have. I think I use it that way only to remove some warning message. People are a little bit scared of those warnings 🙂

      Why ~Indicator~? While in the previous example Parameter is just a variable name, here ~Indicator~ is replaced with an automatically generated function call, it links to another method somewhere in the code.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: how to declare parameters for custom blocks

      Parameters are only defined in that box top right, not in the code. In the code you only use them. Here is something that I did:
      0_1523112009376_f7787e45-9187-43e4-9be5-575b35ea4461-image.png

      At the end the code looks like this:
      ``
      // "test" model
      template<typename T1>
      class MDL__3066: public BlockCalls
      {
      public: /* Input Parameters */
      T1 Parameter;
      virtual void callback(int r) {return;}

      public: /* Constructor */
      MDL__3066()
      {
      	Parameter = (int)123;
      }
      
      public: /* The main method */
      virtual void _execute_()
      {
      	Print(Parameter);
      }
      

      };
      ``
      _3066 is the id of the custom block, this is automatically generated and you can change it from here:
      0_1523112115090_315bbffd-432b-4c35-9f1e-3ea4b7d38fc4-image.png

      As you can see in the code, the parameter is defined just below that line with /* Input Parameters */
      The code of the block is simply Print(Parameter); and you can see where this is located. So the variable Parameter comes from above, it is a public member of the class and it is automatically placed there.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: USING THE TESTERWITHDRAWAL() FUNCTION FOR MODELING THE WITHDRAWALS OF PROFIT

      You know, I have no idea. This "Withdraw" block only exists in MQL5, because only in MQL5 there is a function for that. But it is a simple function, so this block is very very simple. I checked it now, it shows some withdrawal action, but I don't know how it works when optimizing. You may find something more interesting in their website - https://www.mql5.com/en/search#!keyword=testerwithdrawal

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: There are objects left when the expert leaves the chart

      This is actually in the project's settings, if you don't want it at all 0_1523048502678_fe891fcf-e5d0-41bd-8d33-1f5a04e51a1d-image.png

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Problem to import mq4 file

      This is old topic, I don't know what was the solution. And I don't know what it is now, but you can send me your file if you want and I will check what is wrong with it 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: How can we define a hammer candle??????????????

      Long time ago there was a special block for candlestick formations, but I removed this block. I think that such things should be made with custom indicators, and I guess there are custom indicators for such formations. But yes, for a single candle there is this block Single candle template

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Is it possible to change the used time-frame using input parameters (in blocks)?

      But wait, what about this block 0_1523048009729_478dd558-7ac2-4c48-bf63-be205d1b87c8-image.png

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Add volume

      So, if one trade closes, you want to use its Open Price to make an order at that price? You can try this in "on Trade", something like this:
      0_1523047467302_5a4c1b61-fe19-4e18-9ffd-bfc634c40d2c-image.png

      Above I was thinking about something else, like adding extra pending order to existing one. Now I don't think you want that. I think you want to replace a closed trade with a pending order.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: When you reach a loss greater than 10% below, on your balance send alert

      The easiest way, but only if you want to work with the account profit, is to check Account -> Profit in the Condition block. Otherwise there is a block Check profit (unrealized) to check the profit made by a group of trades that are currently opened. Or, there is a block Check profit (period of time) that also includes the profit of already closed trades.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Check if indicator arrow signal wa appear on last 8 previous candle.

      From what I understand, you want to check if there is an arrow somewhere in the last 8 candles. Only for custom indicators you have extra options in the Condition block. Try this option:
      0_1523045805157_730d20fa-eda2-455f-a6ff-4bd9bcc91f20-image.png
      I didn't tested it, but it should work, because if the highest value is EMPTY_VALUE, the Condition block itself would not pass if either value equals to EMPTY_VALUE.

      Otherwise you can try this block - Indicator moves within limits. This block and these special options in Condition are the only places in the EA builder where some indicator values in the past can be checked.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 61
    • 62
    • 63
    • 64
    • 65
    • 374
    • 375
    • 63 / 375