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: object at pending order

      I would place "once per trade/order" between these blocks. But why do you need that?

      By the way, long time ago I made this block:
      0_1545774058270_2761dd83-bd6a-4fa3-a8ce-d12d642b30f1-image.png

      I never used it since then and I'm not sure if it works for pending orders, but I remember that the idea was to make the chart (on live trading) look the similar way as it looks after backtest - with arrows and lines for each trade.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: what's wrong in here?

      If you are asking about the comments on the top, I probably placed them for the future me, for me to know what is going on If I touch this code in the future.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How can i use this custom indicator

      What you wrote is a MQL4 code. You can use such code in... lets' say the second Condition block.
      0_1545773427632_d0adf3f9-bf6d-4643-9516-0fb24909cf18-image.png

      Or in the first Condition block
      0_1545773457814_9f9a32ed-e9d5-4126-a4f7-f6fa8b07fe06-image.png

      Buuut I think that it's a better idea to add this indicator in "My Indicators".

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Create EA

      What do you mean by "functions"?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Problens with continuous series in brasilian market

      To be honest, I don't know what are those series

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Candle Shift ID for friday

      https://fxdreema.com/shared/fMzA0vdhc

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Multiple positions and lot size management

      There are blocks for Buy and for Sell orders, they are separate. You can't make Buy and Sell orders with one block only. You can modify SL, TP and Expiration of an order, but not the lot size - not manually, not automatically.To change the lot size you need to close the order and create a new one.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Backtesting and demo difference

      Which one appears to be wrong? I mean, you know the rules of trading, you probably can find the places where the EA should make a new trade, but didn't. Also check if there are error messages

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to determine the self draw fibo?

      What is the problem here, you can't draw the fibonacci object or use i after that?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Closing open trade when amount in deposit currency equals previous closed profit value

      But it's not a good idea to use == to compare prices and profits. Use >= or <= instead.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Partial TP

      What is the volume step for this symbol?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Compile error with MT4 1160

      I removed it and I decided to put the latest compiler on the web version, but unfortunately it is much slower than the one I used until now. I hope that at least the EAs will be backtested quickly, or maybe not

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Compile error with MT4 1160

      You all are compiling .mq4 files generated with fxDreema locally? But why? :))

      I wonder for what reason MetaQuotes upgraded MT4 after they abandoned it. Those guys are very confused in the business they are doing 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Partial TP

      I made this: https://fxdreema.com/shared/lkWMP1hAd
      And this is the result for me: 0_1545070229403_3f8af002-c4ff-460a-b8b9-d7848027407f-image.png

      What are you working at - MT4 or MT5? Can you give me similar simple example that can show me the problem on my MT?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to check the consecutive losses between two specific times?

      But what do you understand by consecutive losses between two times? Because you can have something like this:

      time 11:00
      time 11:10 - profit
      time 11:30 - loss
      time 11:50 - loss
      time 12:20 - loss
      time 12:30 - profit
      time 12:40 - loss
      time 12:50 - profit
      time 13:00

      what is the count of consecutive losses here?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Closing open trade when amount in deposit currency equals previous closed profit value

      I made this: https://fxdreema.com/shared/nnCFpUM7d

      0_1545069572274_19ce1754-d25c-4cfc-85e9-95ead1f71996-image.png

      I don't know what should happen when the trade is on loss, so I set SL. That first Buy trade that was more profitable closed at profit >= than the loss of the previous one.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Partial TP

      I think you are asking how Not to round the lot size, but I am afraid this is impossible, because there is something called Lot Step and means that there is a minimum step for the lot sizes. If the lot step is 0.01, then you can trade 0.16 or 0.17, but not 0.165.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: I NEED HELP TO MAKE EA

      I see Martingale here, but when are those trades open, with that rules?

      Otherwise when you use the Buy and Sell blocks, for Money management find Martingale. The lot sizes should happen like that automatically.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Close in losses.

      I also don't really understand what is the question, but you can get the profit amount of every closed trade every time you want, because this data exists and can be read even if you install MetaTrader on another PC.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Candle Shift ID for friday

      Interesting question, and I have no good idea how to make it easily on the EA builder. As a code, I imagine having a loop to find the candle from the last friday, try this for example:

      int OnInit()
      {
      	int shift = 0;
      	while (true)
      	{
      		datetime time = iTime(Symbol(), PERIOD_D1, shift);
      		shift++;
      		if (TimeDayOfWeek(time) == 5) {
      			break;
      		}
      	}
      	
      	Comment(shift);
      }
      
      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 32
    • 33
    • 34
    • 35
    • 36
    • 374
    • 375
    • 34 / 375