@DoctorK Ok. and what is the maximum/minimum distance required for the condition to be met?
Posts made by l'andorrà
-
RE: How to buy or sell order compare close period price candle with current open price candle at timeframe MIN ? Thank Allposted in Questions & Answers
-
RE: requested margin < balance * 0.10posted in Questions & Answers
@abasali Then I'm not sure I can be helpful. If I understand what you want correctly, you need to know if a trade will be using less than 10% of current balance's margin BEFORE it is open, right?
-
RE: requested margin < balance * 0.10posted in Questions & Answers
@abasali This should work, but I never tried:

-
RE: How to buy or sell order compare close period price candle with current open price candle at timeframe MIN ? Thank Allposted in Questions & Answers
I'm not sure I fully understand. Do you mean comparing the price of a recently closed trade with the current candle's open price maybe?
-
RE: How to tell my bot to close all opened position once it has gotten to a certain profit percentageposted in Questions & Answers
@Humble_Fx It needs to be a separate tree AFTER all the previous ones have been executed in 'on tick' tab.
-
RE: using turn on/off blocksposted in Questions & Answers
@l-andorrà You can store the UNIX time value of the open trade into a variable. Then add the required time period (in UNIX format) to that variable value and finally you can do something like that:

-
RE: TURNING A MONEY MANAGEMENT SEQUENCE INTO A LOOP AFTER A MAXIMUM LOT SIZE IS REACHED.posted in Questions & Answers
@kestra Then you need a custom structure using variables. You can find some inspiration with my custom martingale project doing exactly that:
-
RE: Decisive indicators, supporting indicatorsposted in Tutorials by Users
@Kongpatchara As you can read in the post on top of yours, it cannot be open in fxDreema, sadly.
-
RE: EA NOT WORKING ON REAL OR DEMO AS IT WORKS ON TESTERposted in Bug Reports
@DROGO Not that way. What I'm saying is that brokers do not apply the same rules on backtest and on real. I've experienced that myself MANY times. What you should do is trying other brokers in demo and reals to check it out. You'll be surprised.
-
RE: Max symbolsposted in Questions & Answers
@smille99 Then you can use this block immediately after the one limiting the max number of trades:

This block will recognize this symbol can still open trades.
-
RE: my andicatorposted in Questions & Answers
Does the indicator work normally on your MT4 platform? I mean, can you import DLL files normally there?
-
RE: Create a buy 100 pips away from 10:30 amposted in Questions & Answers
You're welcome. That is what I'm trying to explain in your other thread.

-
RE: Getting MAE MFE for Each Tradeposted in Questions & Answers
@s00071609 The admis definitely replies if you paid a full subscription. Sadly he can take up to 3 weeks to do it.

-
RE: Create a buy 100 pips away from 10:30 amposted in Questions & Answers
You will need to use a variable like this:
-
RE: A TimeFilter within a TimeFilterposted in Questions & Answers
No. Because of the 'once per bar' block on top, block 842 is irrelevant at all effects. What do you exactly need?
-
RE: Max symbolsposted in Questions & Answers
@smille99 Are you using the same bot on different charts or one only bot on one only chart?
-
RE: How to tell my bot to close all opened position once it has gotten to a certain profit percentageposted in Questions & Answers
@Humble_Fx You can do something like this, for example to close all trades when equity is 3% in profit right now:

-
RE: How to create trendline based robot and indicatorposted in Questions & Answers
@Humble_Fx As jstap said, you need to import the indicator as a custom indicator on fxDreema. Then you can use it normally as explained here:
https://fxdreema.com/documentation/builder/indicators
However, sktsec is also right. Many indicators repaint. If you indicator does it, the bot is doomed.
-
RE: using turn on/off blocksposted in Questions & Answers
@nasserminaei You can use UNIX time to calculate that minimum time to happen after the last trade was closed. Are you familiar with using UNIX time?