Not sure I fully understand the initial premise. Do you mean three simultanous open trades to be in loss right now? Or maybe three confirmed closed trades, all of them in loss?
Posts made by l'andorrà
-
RE: How To Double The Lot Size Until A Pos. With Profitposted in Questions & Answers
-
RE: APIposted in Questions & Answers
AFAIK there is not an available fxDreema API. However, you can ask the creator to confirm.
-
RE: How to determine tp and sl levels according to some specific candles sizes'posted in Questions & Answers
You can use variables to store those values and then use simple math to find the 50% distance. You need to draw any fibo at all. However, before doing that you need to establish cristal clear conditions to define what combination of candles you need to consider a valid calculation. For example, what if candle 1's high (not its body size) is higher than candles 2 and 3's?
-
RE: Trailing stop for sell isn't working.posted in Bug Reports
The problem is that you are combining loops before other llops. That is a common mistake. You are using many trailing stop within the same structure. They should be separated instead as independnt structures and, above all, disconnected from the last 'common' part of the structure. On the other hand I never recommend using 'bucket of trades' blocks. It is always more recommended to use 'for each trade' blocks instead.
-
RE: How to tell EA to stop Tradingposted in Questions & Answers
You can use this general structure:
-
RE: How to fix trades entering not off local time?posted in Questions & Answers
AFAIK when you are backtesting, you must use the time value of the available data on your platform. To my knowledge, in order to change that you would need external softwar to do the changes. I maybe wrong, of course. What you can do, however, is buying a service of high quality data to download and then change the time there, but again, tha is an external service.
-
RE: Magic Nr MT5posted in Questions & Answers
Do you mean on fxDreema? All bots are born with a magin number on fxDreema.
-
RE: Partial closeposted in Questions & Answers
@Nguyen-Nam-Oanh Unfortunately not. A new trade with a new ticket number is created automatically.
-
RE: Trademanager for MT5 Mobileposted in Questions & Answers
@Domeonline I'm not sure about mobile MT5 platform works. Did you check if the problem repliacted on desktop MT5? Maybe the problem is on the platform system, not the bot.
-
RE: Finding objects on chartposted in Questions & Answers
The only option I know if trying to find that arrow as an object instead of as a buffer. Is it visible as an object on the 'Objects' window of the platform? If so you can use it. Otherwise, you will need some custom code.
-
RE: Book half on 1:1posted in Questions & Answers
I see you opened a new thread for the exact same question. Please don't duplicate threads.
-
RE: Need config Take profit RR 1:1 or 1:1.5posted in Questions & Answers
As I explained in my precious post, for a 1:1 you need to select value 100 as per the image.
-
RE: How can I add a description to a Lineposted in Questions & Answers
You need to use a diferent object (a text) and draw it close to the line. In fxDreema there is no possibility of doing the line and the text in one only object. You will need two separate objects.
-
RE: Please Help Me Create My EA With Specific Simple Strategyposted in Questions & Answers
I agree with all the JayPhillbrooks comments. Sadly fxDreema is not easy to grasp initially. It is not as intuitive as I think it should, but IMHO it is still the best tool available on the market today to create your custom bots. And as JayPhillbrooks said, your approach to the market is not a good one on the long term. There are several better options.
-
RE: Daily target profitposted in Questions & Answers
@Matatika Everything is correct except for blocks 1 and 5. They need to be exchanged. That 'Time filter' block needs to be the first one to be executed every day. Istead of number 5, it should be number 1. Then your 'Run EA' block will be given number five. That means you will have to moficy both 'turn on/off' blocks accordingly.
-
RE: Help Grid distance multiple (Dynamic grid)posted in Questions & Answers
That's not a trivial thing to do. If I understand your idea correctly, you want to create an initial grid distance that will be modified later in time when other conditions are met. I see you are using variables, and that is the correct thing to do. However, several consideratios are to be included. Are all frid levels equidistant or not? Where is the initial price level for each new iteration? Can different iterations be combined? I don't know if you see what I mean.