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: Updated Desktop version petition

      So, there are bugs? I'm surprised actually, because no one is reporting any bugs in the desktop version. Only sometimes people have problems starting it, but nothing in it - the blocks and so on 🙂

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: fxDreema affiliate

      No. I personally don't like any form of advertising, I don't understand it and I just can't think of this 🙂

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: MT4 vs MT5 for backtesting ...

      MT4 was the winner and I think it still is... depends on what platform the brokers provide. MT5 started somewhere around 2010, but MQL5 was different and complicated for most people, so MT5 never got more popular than MT4. More than that, in MT5 we were only allowed to have 1 position per symbol. But not very long time ago they added "Use hedge in trading" option, so MT5 is now almost the same as MT4 in the way trades work. Also around that time they stopped developing MT4 anymore.

      I'm not sure that those real ticks are really real. You know that in MT4 you can import history data from somewhere else, and you can import real ticks... but when you do that, you are using many gigabytes of data. Where are those gigabytes in MT5?

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: before buying the service

      No, it's english only 🙂

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Draw Rectangle

      For rectangle you need to provide 4 values - 2 price and 2 time values. Those are the coordinated of 2 points on the chart. Imagine that you are drawing it manually - the first point is where you started drawing it, and the second point is where you stopped.

      0_1541871685422_f27ba58e-8de3-422f-b32d-d52d106e519b-image.png

      I started drawing this rectangle from the upper left point, as the yellow arrow shows.

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Incompatible variables between same or different Indicators in the same conditional decision block!

      I'm trying to understand what you are trying to do, but I can't 🙂 Better don't give such names to the variables that are actually system words, it's confusing. The data type for Applied Price is ENUM_APPLIED_PRICE, it's not int.

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Bug on Block No pend order nearby MT5

      I think I fixed it

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: problema con para crear un trailling stop de 2 fase

      @timoteo21 said in problema con para crear un trailling stop de 2 fase:

      Hola , tengo un problema a la hora de hacer un tralling stop, quiero que funciones de esta manera.
      cuando el precio supere los 10 pip del precio de entrada . el stop loss se modifica a 5 pip en positivo y de ahi que funciones con el traling stop del metatrade ,pero solo puedo hacer la primera parte , si alguien me puede dar una mano para resolver la segunda parte seria de gran ayuda ,acepto codigo mql ,

      I used Google Translate to translate what you say, and this is the translation:

      Hi, I have a problem when it comes to doing a tralling stop, I want you to function in this way.
      when the price exceeds 10 pip of the entry price. the stop loss is modified to 5 pip in positive and that's why it works with the trailing stop of the metatrade, but I can only do the first part, if someone can give me a hand to solve the second part would be very helpful, I accept mql code ,

      I don't understand what is the first part and second part. Primera parte, segunda parte?? What are those parts?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: robot

      Technically it is possible, but Martingale is in the Buy/Sell block, which uses particular Symbol name, so it's not possible in that block.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to make trailing stop continue to be active when the ea is deactivated from certain pair?

      You are talking about "Reference price" that is Ask or Bid? If the price makes a new high this day, the trailing stop block should move SL according to this price.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: bucle :(

      You are using variable pivothigh as a SL level, but this variable is never modified and its initial value is 0. As a result SL is 0. And then "Risk fixed amount of money" requires that SL is different that 0. The error comes from one function that calculates the lot size using SL.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: This works fine on MT4 but not on MT5

      It looks that it doesn't work when "Oldest to newest" is selected. I will check what is going on

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Change semi-colons to commas in Write to file

      This block is old, there are people using it and I don't feel like I want to change something in it that could break something for someone 🙂

      You can try to make a custom block if you know a little bit of MQL 🙂 At least you will be able to customize it as you wish. Here is how the current block looks like in https://fxdreema.com/studio/MQL4

      This is the code:

      string filename = Filename + ".csv";
      int handle      = FileOpen(filename, FILE_CSV|FILE_READ|FILE_WRITE, ';');
      
      if (handle == INVALID_HANDLE)
      {
         Print(filename," OPEN Error: ",ErrorMessage());
      
         ~error~
      }
      else
      {
         FileSeek(handle,0,SEEK_END);
      
         if (FileSize(handle)==0)
      	{
            FileWrite(handle,"Time (local)","Time (server)",C1Title,C2Title,C3Title,C4Title,C5Title,C6Title,C7Title,C8Title,C9Title,C10Title);
         }
      
         if(handle > 0)
         {
            FileWrite(handle,TimeToString(TimeLocal()),TimeToString(TimeCurrent()),~Column1~,~Column2~,~Column3~,~Column4~,~Column5~,~Column6~,~Column7~,~Column8~,~Column9~,~Column10~);
            FileClose(handle);
         }
      
         ~next~
      }
      

      The input parameters look like this:
      0_1541437442036_f2d4fea8-3d45-4f6b-ac3e-67817c384dc2-image.png

      0_1541437471619_baeebb89-3d40-4b91-9e35-26cd89eb3030-image.png

      0_1541437493272_82200b8c-cd82-4509-9368-c75de2169fe2-image.png

      0_1541437508181_c73d1ebc-eb76-4ccd-b2a1-b2b794ede0aa-image.png

      ... and for the others it is similar, only "Variable Name" has different number.... C2Title, Column2, C3Title, Column3 and so on.

      Parameters are added with that "New" button and separators are added with that "--" button

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trailing stop

      If you want SL to start trailing only after there is certain profit, then use these "Trailing Start" settings

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Close all trades when open trades are in profit?

      Take a look at the filter settings, especially the "Group" number. You have this for all blocks who deal with trades and orders. By default the value is empty... which is 0... and in some way this is connected with the magic number. But you can make it like this: 0_1541101497143_e4f92c58-6983-4215-9924-655f9c381930-image.png

      Also, the Symbol is also set to empty value, which means the current symbol. You may want to make it like this:
      0_1541101543680_34eaa0b1-5d70-45c9-82ef-0a93021f460f-image.png

      "Check profit (unrealized)" is the block to check the current profit from multiple trades. Or, you can also check the Equity in Condition.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Hello, which variable or function controls the size lots?

      I don't understand the question, what do you want to control? 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Wanted to subscribe .. but failing at simple grid setup - any help/guidance available?

      The value for "Grid size" is expected to be measured in pips, some value like 25 for example. The difference between two price levels is a different kind of value, something like 0.0025. The problem is that "Grid size" is a simple input and there is no any alternative "Custom..." option. The easiest way to convert the value is to multiply it by 10000 or something similar, but for some symbols this will not be correct number. Or you can try this, I think it is also easy: 0_1541100810280_1da6890d-9ad5-4a9e-aab6-9a8f109c215f-image.png

      I don't understand that OR block. When you have it like this, you will get 2 pending orders every time. But maybe this is what you want...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: bucle :(

      I don't understand what is going on here. What do you mean when you say that everything needs to be repeated, what is "everything"?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can I print the stop loss live?

      Do you have only 1 trade at a time, or is it possible to have multiple?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Poner ordenes pendientes en niveles de fibo

      I see you are trying to create fibonacci objects with the EA, but here is something I noticed:

      0_1541015641044_ba5893f6-332e-4c1d-9d9f-711a4743dd34-image.png

      You have "fibo0" as a name of the object, but take a look at the first 2 parameters that are Yes and No now. In this case "fibo0" will be a prefix, not the name of the object.

      0_1541015721049_6630ca40-6352-4176-836d-cc1fa17f129d-image.png

      Try with No - Yes, and then take a look at the actual name of the object that is created on the chart.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 37
    • 38
    • 39
    • 40
    • 41
    • 374
    • 375
    • 39 / 375