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: enter a text line in the EA properties input window

      Well, it's not so slow to manually create input parameters. You can probably make few of them for 1 minute. Yes, this is slower compared to just checking few checkboxes with the mouse, but the difference is seconds 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Strategy created but backtest don't work on MT4

      Do you have errors?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Custom indicator ea

      What are the problems?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: open tade on next candel if last trade was a loss

      https://fxdreema.com/shared/Gxrn7JUyc
      Something like this maybe. But it depends.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: MT5 "close less profitable position" block bug?

      I got the same problem. I will investigate this and fix it

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: "check profit (period of time)" modification please?

      In "Check profit (period of time)" you enter "money" type of value, which is your account currency, for example dollars. You can always use more complex value there, for example AccountBalance()*0.01 (or AccountEquity()*0.01). Of course, AccountBalance() is a MQL function that gives you the current balance, but I think it's easy enough to be used. AccountBalance()*0.01 gives you 1% of the balance, so if the balance is 1000 dollars, the value would be 10.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trade Close event

      It depends.

      • Under "on Trade" - you can detect the event when a trade is closed and then create a new order using the same parameters of the already closed trade. But for this to work you need the EA to be working. If for some reason the EA does not work when the trade closes, that event would not be detected and nothing will happen.

      • Under "on Tick". Here you can check the count of the trades (on every tick). And when the count is let's say 0 (you can use "No trade" for example) you can open new pending order. Play with this example: http://fxdreema.com/shared/mFkUb3omd It's probably not exactly what you want, but I'm only giving you for ideas.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Inputs for Scripts

      It should be available now: http://prntscr.com/esicto
      Tell me if it doesn't work

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Automatic higher balance-goal after profit

      I'm not sure I understand the whole question, but if you just want to check the profit of the last trade, you can use:

      • "Check profit (last closed)"
      • or "For each Closed Trade" (set Not more than n history trades to 1) and then any other pink block, for example "check profit"
      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Stop Loss according to the Max, Min of the day.

      @tcanuto, please, take some time to learn how to make things easier! What you are showing me is an example that I need to see... that's ok. But do you think that this example should contain both, Buy and Sell blocks + 2 blocks of TS...

      Here I simplified it a bit. I just want to see the calculated value actually, that's why I added this "Comment" block. But are you sure you want it to be that value? From what I see, in "Formula" block you are calculating the half of the size of the Daily candle. And again, the current candle has 0 size when created and starts to grow from there. I don't think you want to work with that candle.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: enter a text line in the EA properties input window

      Sometimes you must take some time to polish things. I agree, it's a lot quicker to check bunch of checkboxes... but then you get bunch of input parameters with stupid names (decided by the EA builder), which is ugly.

      When you use a Constant in some input field, uncheck that checkbox. Don't use both at the same time.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: stoploss martingale

      I think that take-profit should be doubled, because in Martingale you normally want 2x profit after a loss. But anyway, get ideas from this one: http://fxdreema.com/shared/4fxd5MZVc

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Inputs for Scripts

      Ok, this option will be added with the next update, you will find it somewhere in the project's options. But these days, hopefully tomorrow, because I'm currently working on something and I'm not prepared to make that update right now.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: object label

      Horizontal lines are just lines, they don't have such label that comes with them. These labels are different kind of objects. It's not impossible to create labels and move them with the lines, but this does not exist in fxDreema... at least not in one block.

      How this can be done... at least on theory - It is possible to catch the event of moving any object (event like this would happen very often, multiple times per second depending on the speed of moving your mouse). In that event I imagine that the name of the horizontal line can be read and with that name the label with similar name could be found. Then the idea is to move the label at certain distance from the line.

      And I'm only speculating on this, because I'm not even sure that you can do something like this at all. Now that I'm thinking more, I know 2 types of text objects that can be printed on the chart:

      • One of them can be positioned absolutely - at certain pixels from the top and the left. In MetaTrader this is the T icon. But this object does not move with the chart! While the horizontal line does.
      • The other can be positioned vertically on certain price and horizontally on certain time (candle). Basically the same way that any arrow is positioned. But what is the time (candle) at the right side of the screen where normally you don't even see candles?
      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: enter a text line in the EA properties input window

      https://fxdreema.com/demo/mt4-constants

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: plz help me make this indicator when every arrow appear....

      In "Once per bar" is on the top, those indicator blocks run only in the first tick of the bar. Look here for explanation: https://fxdreema.com/demo/mt4-once-per-bar

      But you are working with Candle ID = 1, so this should not be a problem. Well, I can see some trades that are started at candles where no arrow can be seen after the end of the test, so I think that this indicator could repaint that arrow for this candle.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Inputs for Scripts

      You know, I don't have such setting in the options. I think that if you add #property script_show_inputs somewhere on the top of the code it will work. Here are all possible properties: https://www.mql5.com/en/docs/basis/preprosessor/compilation But why do you need this, I think that scripts are supposed to be run quickly...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Question about writing indicator values

      There are few blocks that do that, such as Comment, Alert, Phone Notifications. All of them have multiple rows of data, but then you can read that data in multiple rows as well. There is a block "Log message", which uses Print() to print information in the log, but this information is one row. If you add \r\n (new row special symbols) in the text, everything would still be printed as one row text and it's hard to read anyway. That's why there are no rows of data in this block, I just didn't liked the way that the log looks like.

      Maybe you can try "Write to file", I think it will do better job than printing all kinds of stuff in the logs along with all the other junk there.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Do you continue and trim the good Desktop-Version?

      I'm doing nothing for the desktop version, I can't lie. What else can I say? 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: how do I draw a vertical line for each Daily candle?

      Well, I will suggest to use some indicator, I'm sure there are indicators line this with various options 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 92
    • 93
    • 94
    • 95
    • 96
    • 374
    • 375
    • 94 / 375