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: need help with treadlines please

      EA - the idea of such program is to trade, to create/modify/delete trades and orders and basically to control their count
      Script - similar, but its code runs once
      Indicator - the idea is to get information from the candles and transform that information to another kind of information

      EAs and Indicators are little bit different. Yes, EAs can do calculations, because they are programs, but its better to make those calculations in indicators. Swing, highs, lows... there are some things already available in "Condition" block, such as the highest/lowest level in few candles, or pivot points, but for more complex problems indicators should be used.

      I don't understand Andrew's Pitchfork. I only know that it has many coordinates. I have no idea how this thing is used.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: profitto

      Trailing stop (each trade) work for individual trades only. But there are other Trailing stop blocks, maybe some of them?

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: pending order

      What is this strange sequence of lots - 1, 2, 2, 3, 4, 5, 7. It doesn't look like Fibonacci or other system, it looks custom. Well, there is an option for custom sequence. But I would try to work only with trades. Mixing pending orders and trades and this custom MM... I don't know

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: MT5 multi bar type strategies Possible

      I don't think so. In renko charts you work have renko bars, but there are no regular bars

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to open new trades when a trade is closed?

      GBPUSD, this year - interesting backtest results by the way. Poor modelling quality and not the ideal ending, but at it looks interesting most of the time 🙂 http://prntscr.com/d4ugq2

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Storing price levels on multi-currency system

      "No trade nearby" block? Well, "No position nearby" for MT5

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to open new trades when a trade is closed?

      Note that I work in "on Tick" and "on Trade". I use no SL, because you don't in your example: https://fxdreema.com/shared/sc48MK3ne

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Where are my Pivot lines?

      But all those Formula blocks are inactive, it's like they are not there at all. (Now I got the idea to make such blocks transparent)

      There is already option to get pivot point values, somewhere in Condition -> Market properties. If not, some custom indicator can be used and you will even see the values on the chart, which is always good, more control.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: pending order

      It depends. There are Money Management options in Buy now/Sell now. Multiple pending orders with different parameters can be made in Buy pending orders in grid/Sell pending orders in grid. And other ways too. No single answer.

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Vote for a new desktop version!

      I can admit that it's not only the connection right now. There is some weird error that appears from time to time and Apache restarts. But I'm almost done with the new NodeJS version, so I hope that this problem will disappear with Apache/PHP. Well, I expect problems with NodeJS initially, as always, but at the end I think everything will work very good 🙂

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Whick block can give MQL error codes?

      How can the EA itself produce such errors. The EA sends trade request to the server and the errors are response from the server. There is network between the EA and the server, so it takes time for the request to reach the server. The EA can't fix network problems, it can only send the request, wait for the response and react.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to get message only once?

      https://fxdreema.com/demo/mt4-once-per-bar

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Where are my Pivot lines?

      I have no idea what this project is supposed to do. I see multiple Formula blocks, and they are all inactive, because they are not connected to anything. Are they supposed to be used? If we look in their properties - total mess. The same Variable used for different kind of parameters. There is no idea in this, you tried something just like that, only with empty hope that something would work.

      The same I can see in those "Draw Line" blocks. Let's take block 17 for example. Variable named "PIVOT" is used in it... for Pivot Point Mode and for Candle ID. Why? Those parameters are totally different.

      Block 24. You work under "on Tick" if this block becomes true, it will probably stay true for a while, for multiple ticks. The result would be multiple trades.

      I think you have wrong idea for how to use fxDreema 🙂 What can I say about this...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can I remove Comments

      Run the same Comment block again with different values?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: 'start' - function can be declared only in the global scope

      Very strange, I see this for the first time. Somehow this appears in the code:

      void iCustom()
      {
      	//---- Read value from trend and signal buffer
      int start()
      {
      // Read values
      double trend  = iCustom(Symbol(), Period(), "PZ_LopezTrend_LICENSENUM", 5, 1);
      double signal = iCustom(Symbol(), Period(), "PZ_LopezTrend_LICENCESUM", 6, 1);
      // Do something
      if(trend  == OP_BUY)      { /* Your code if trend is currently bullish */ }
      if(trend  == OP_SELL)     { /* Your code if trend is currently bearish */ }
      if(signal == OP_BUY)      { /* Your code for bullish trend change */ }
      if(signal == OP_SELL)     { /* Your code for bearish trend change */ }
      // Exit
      return(0);
      }
      	return;
      }
      

      .. but I don't recognize this code and I can't see how it's injected into the code. Do you have some idea?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: pending order

      I don't really understand what you are asking for, but try this: https://fxdreema.com/shared/w1uapMWJc

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Historical data

      Tickstory?

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: How to get message only once?

      Depends. You can try these blocks Price x> Indicator and Price x< Indicator, or Once per bar

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can I remove Comments

      I can see that even on the desktop version you have the option to choose the position of the comments. If 2 (or more) Comment blocks are used, each one of them produces its own zone of text, that's why you see them overlap

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Where are my Pivot lines?

      There is a problem in block 24. Remember, NEVER use == to compare price values. Ask and Bid prices jump and skip values all the time. Use anything else, but not ==

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 114
    • 115
    • 116
    • 117
    • 118
    • 374
    • 375
    • 116 / 375