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: Manage trade

      Are you sure about the "Once per trades" block? I personally never used this one in any projects I have made 🙂 Blocks such as Trailing stop and Break even should be run on every tick. I also don't like this 13-12 connection that you have. I didn't tried your latest project, but in general it doesn't look very well for me.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Candle Touches Moving Average

      https://fxdreema.com/help/-/working%20w ... e%20closes

      "Once per bar" should be used instead. Here is some example: https://fxdreema.com/demo/mt4-once-per-bar

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to integrate a stand alone EA into fxdreema?

      If you know the logic, you can try to build it. That's why it's called "EA builder". But custom made full EAs can't be imported. You can create and work with custom functions, but I don't think the idea is very good. Just try to build the logic with blocks.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Please help

      "double" type is a numeric data type for floating point numbers such as 1.2345. EURUSD and USDCHF are not numbers, nor variables. Use "string" data type instead.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Closing trades by indicator

      This is what you have for the Sell part: http://prntscr.com/c7hqm3
      Guess what... if RSI is lower than 16, then it's lower than 45 as well. If both Conditions (10 and 13) are both true, you can imagine that they does not exists.

      Maybe you can use "Once per bar" somewhere. Or maybe you want to use x< or x> in some Condition.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Suggestion FxDreema design

      Yes, I almost have it now on NodeJS. I'm also changing the database and the forum as well. I hope that it will work as expected one day.

      I think that other people need to tell their opinion about this as well. You are probably coming from another EA builder and you get used to it, but I guess that there are many people who are used to fxDreema. One guy told me that he prefers the old way to list blocks, with all categories expanded, which means even more scroll. He eventually found that if he write a* in the Search field above, the whole list expands.

      About the pictures.. there are probably more than 100 blocks in the list, I hope you are not talking about unique icons for each block 🙂 I experimented before with icons by the way. But the color is also some kind of behavioral code. Color + Icon... double standard, what is the point? I also tried with different shapes of the blocks. For example, some blocks can be sqare, others can have triangle left/right sides. But I decided that it's good enough to be the way it is now.

      Someone else with design opinion?

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: How to use multi-pairs in mt5 and mt4

      Here is a block that can be used for something like multi-pairs: http://prntscr.com/c7gret It has one string parameter and symbol names are separated with ,
      This block only causes the following blocks to run multiple times, each time with different symbol. The idea is that if in one EA you want to do the same thing with multiple symbols, to use only 1 group of blocks. Of course, if the EA is working in EURUSD, the block would run because of the ticks in EURUSD

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: appearing several times the same indicator

      Which code?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Closing trades by indicator

      Which EA doesn't work? SL and TP in brackets? Give me more information.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: change the color of a block using

      I never tried that, but if they wrote those rules here, it's probably possible https://docs.mql4.com/basis/types/integer/color

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: handle=10 | error code=4806

      MQL5 is weirdly asynchronous and I often have unexpected problems with it. But if the error shows only once and then everything works, it's not a big problem

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Ex4 Indicator

      http://prntscr.com/c61w5n
      http://prntscr.com/c61wcd

      Both indicators give you value of 0 when their buffer is not active. Put them into "Trace" block and you will see. You decide how to use them 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: change the color of a block using

      "color" is an integer data type, the values are integer (whole) numbers. Here all colors are listed: https://docs.mql4.com/constants/objectc ... /webcolors Yes, they appear as text values, but these are all names of predefined constants in MQL4

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Variable compilation error

      bool instead of boolean
      true instead of True

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: appearing several times the same indicator

      Do you have the same problem with other indicators?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: My first try

      Depends on the Magic number. Manual trades/orders have Magic number of 0. EAs should make trades/orders with different number, but they can also work with trades/orders with Magic number of 0.

      Try one of these: http://prntscr.com/c5e24v

      If you want the EA to only control manual trades/orders, the easiest is to set the Magic to 0.

      I still don't get these AND and OR questions 🙂 But in blocks like "No trade" or "No pending order" there are few filter options.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Creating a scrip to buy.

      Funny, no one ever before reported such problem, it looks that it's only you who decided to make MT5 Script 🙂 I think it works now

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problem with selection of multiple groups in block - on trade new trade opened

      "1,2" was not possible in "on Trade". I think that it works now.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Creating a scrip to buy.

      Connect this block with "Pass". In a block is not connected, it is excluded from the final .mq4/.ex4 file

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can I work with BUYLIMIT and SELLLIMIT

      https://fxdreema.com/shared/GnVOCIVJd

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 129
    • 130
    • 131
    • 132
    • 133
    • 374
    • 375
    • 131 / 375