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: self updating/refreshing grid, compare two groups of trades

      "For each Object" is used to select an object by searching in all objects and pick one that matches it's filters. And it has filters to say what type the object should be (line, rectangle, whatever) and also what color. Also I recommend to set "Not more than..." to 1.

      Then in "Condition" go to Object on the chart. There in "Object source" select "Picked by loop" and select Price level 1. This should return one of both prices and it can be compared with Candle Close, Ask, Bid or something else. The same goes for Price level 2.

      It becomes more complex if you want to work with multiple objects, then "For each Object" must have empty "Not more than" to not stop when the first matched object was found, and have some Variable to set it to true if for any object conditions were true.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Custom functions

      Try it now

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Questions on trailing stop

      For Buy:

      if Ask - SL >= TrailingStop + TrailingStep => set SL to Ask - TrailingStop

      but do this only when Ask - OpenPrice > TrailingStart if TrailingStart is set

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Custom functions

      Wow, somebody is using this tool! I also have some issues by the way and I must check it anyway. It's not about the browser, the communication between the browser and the server is somehow broken (the messages between them, not the network)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: One trade per a signal

      How can I know? This is a screenshot from the local version and I can't see what is going on there. Each of these blocks has enough settings to make them do something completely different than what is written in their title. I don't know your settings.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: help with global setup directories

      I don't know for a limit of number of EAs to work at the same time. If you want to say that MetaTrader craches, then something incorrect happens. I don't know what, but look at the error logs, CPU, RAM...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: help with global setup directories

      The second path should be like this: C:\Users\JohnSmith\AppData\Roaming\MetaQuotes\Terminal\9F86138A4E27C7218E9EC98A5F8D8CA1
      https://fxdreema.com/help/-/you%20shoul ... 20terminal

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: help with global setup directories

      There are 2 directories to be set. Mine are both the same and are like this: *D:\Program Files\MetaTrader 4* But I work in portable mode, that's why mine are both the same. Normally the second path is where this sends you: https://fxdreema.com/help/pics/terminal_data_folder.png

      Paths must end with \ and not with terminal.exe ot MQL4\

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: One trade per a signal

      Here is something important - Condition 7 will not wait for Condition 6 to become true. I mean, when block 6 is reached, the EA will not stay on it waiting it to pass.
      On every tick block 9 runs, and if this block passes - the next one runs... and the same for other blocks. On the very next tick the same thing happen again. Block 8 can be reached only if blocks 7 and 6 are both true at the same time.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: One trade per a signal

      "Once per bar" is a block who passes 1 time for any given candle (bar). If you put it on top level in "on Tick", then it will pass in the first tick of the new candle. At this time it's easy to get RSI of the previous candle (Candle ID = 1)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Isolating an indicator value

      Ok, here it is: http://prntscr.com/925jux

      Note 1: "More settings" will be always automatically closed, this is something that I will fix somewhere in the future
      Note 2: There is no cache and it will slow down the backtest. If for example you search for Highest value in the previous day, the same calculations will be done every time, even if the result would be the same. To speed up things, I will suggest to use "Once per bar" or "Once a day". In other words, do these calculations only when they are needed.
      Note 3: These options are only for "My Indicators"
      Note 4: In the next days I can decide to make changes if I decide that I don't like something that I did.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Help Needed

      I assume that you know how to get Previous Candles Low and you don't know how to get the highest price from a group of trades. Try this: http://prntscr.com/920jx5

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Isolating an indicator value

      Yes, and finding highest/lowest value in an array of values (candle's data or indicator's data, it's the same) is what normally indicators do. Indicators do calculations over arrays of data. Finding the highest value from the last 10 values (or the values of the last day) in an array is exactly that.

      The other way is to have Variable, monitor the indicator and set that Variable to the highest value. When the new day comes, reset and start again.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: One trade per a signal

      It depends. " No trade" limits trades by their count. Sometimes we want to limit them by time, so then something like "Once per bar" or "Once a day" can be used. Or we can mix those filters.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Help Needed

      I think I don't fully inderstand the question 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: comments with variables

      In the properties of all blocks at the bottom there is something "Change Status to". But I will suggest to use "Comment" block or maybe 'Draw Text"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Close all operations when profit is X

      Well, I think I missed to also set "Any market" in "Close trades, then it will close everything: http://prntscr.com/91s6mr

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Isolating an indicator value

      This was asked so many times before. No, only direct values can be get from indicators. I also explain that indicators should do all calculations using data from candles and give signals to the EA when it's time to trade. The idea of the EA is to manage trades and orders with the help of indicators.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: comments with variables

      "Buy now" and "Sell now" are not "true" or "false", they only create a new trade when you run them. If you want to print some information on the chart about the trade that was just created... https://fxdreema.com/shared/B8JEcw43e

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Once a Day

      Once a day is very similar to the other light-green blocks that you have on the top. These blocks are filters. Those on the top are correctly put there, but "Once a day" does not at the place where you have it. It should be above the blocks that Buy and Sell. I can't tell where exactly, because it depends.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 188
    • 189
    • 190
    • 191
    • 192
    • 374
    • 375
    • 190 / 375