You're welcome 
Posts made by l'andorrà
-
RE: Reverse trailing stop possible, please help me??posted in Questions & Answers
@chattahooche said in Reverse trailing stop possible, please help me??:
Normally, trailing stop work when order in profit. I want to work it when order in loss. For example,
Normally, lets think that we take buy order at eurusd price 1,1000. If the price go to 1,1016, trailing stop starts to work and put stop koss value at 1,1003..In opposite, secondly, we buy at 1,1000 and price went down to 1,0984. I want to trailing stop start to work and put stop loss at 1,0997..Is it possible?Yes it is, but certainly not with a few blocks, if taht is what you are asking for. You will need to store the information of each open trade on one or more variables and recalculate its value on every pip.
-
RE: how many candles?posted in Questions & Answers
An impressive project, certainly! Try what Hadees shared and let us know, please.
-
RE: How to express this condition (shift)posted in Questions & Answers
This is one possible way to do it:

This block is looking for the previous 10 bars, from candle ID 10 (ten bars ago) to candle ID 1 (the bar immediately previous to the current one. Notice that I had to specify the cross width as 9, becuase that's the range being considered.
-
RE: using adjust in pending ordersposted in Bug Reports
What pip rules are being applied? I guess that '-.01' is the reason when nor properly matched to pips rules. If you are using those by default, you should need to insert '-1pips' (the word pips included) on that field.
-
RE: Create Martingale effect without closing tradesposted in Questions & Answers
@specialfx Firstly I recommend you to specify candle ID 1 for both operands on blocks 3 and 5. Now they are set to pass on candle ID 0 so weird results can be obtained.
Now let me understand a bit more of your strategy. Won't you use any SL? Will you just modify the TP?
-
RE: OBV line crossess above custom rsi level bufferposted in Questions & Answers
In that case I'm afraid I'm not the guy you need, but a real programmer :(. Maybe paying for one to do it?
-
RE: OBV line crossess above custom rsi level bufferposted in Questions & Answers
Are you using custom indicators or those provided by fxDreema?
-
RE: Compilation errorposted in Questions & Answers
Two initial questions. Is it a mq4 or an ex4 file? Is it for MT4 or MT5?
-
RE: 2019.10.11 20:21:25.225 2019.10.11 15:59:59 TESTING EURUSD,H1: Expert Advisor self terminatedposted in Questions & Answers
Obviously more blocks are included out of that image. Additionally to all reasons said by roar, other blocks interefering in your project can be the origin of your problem. Could you please share your project?
-
RE: how many candles?posted in Questions & Answers
@fxalex said in how many candles?:
@l-andorrà hello . can you post this idea with fxdreema i'm new and i try to use right. thanks
Sure. The question of trader.philips is very pertinent. When is the sequence supposed to start? I mean, in what conditions exactly?
-
RE: Create Martingale effect without closing tradesposted in Questions & Answers
You're right about how the martingala is designed on fxDreema. The way to do what you want to do is craeting several variables in which all relevant information is stored. Ther is not one 'supereasy' way to do it if this is what you are asking for. But it's not difficult either :).
Do you have any initial project to begin with?
-
RE: How to do one ma above 3 ma? Pls Help meposted in Questions & Answers
Easy.

And don't forget to add candle ID 1 on both operands!!

-
RE: How to express this condition (shift)posted in Questions & Answers
It depends on what you want to know within that range. Was it a crossing up or down? Then you can use a 'Condition' block with the specific candle ID on both operands and the appropriate symbol linking them.
If not, mor detailed info would be appreciated.
-
RE: Possible bug in positioning candle in 'future' candlesposted in Bug Reports
@roar said in Possible bug in positioning candle in 'future' candles:
@fxdreema you should make a sticky post in all forum categories:
"How to ask for help
- what have you tried
- what is the goal
- the problem in most simple form
- etc.
otherwise support is not guaranteed. "
Edit: I'm referring to this lol
I support the motion.
-
RE: 2019.10.10 01:05:14.198 2019.09.02 14:03:48 fxDreema (8) GBPUSD#,M1: Expert Advisor self terminatedposted in Questions & Answers
Difficult to say the reason without any hint on its structure. Can you please share it?
-
RE: how many candles?posted in Questions & Answers
You can create a double variable that will increase +1 as candles pass (juast checking once per bar, obviously). You should initialize at the group1 first trade and reset it when required.
-
RE: my Martingale EA have problem with layer . Please Help meposted in Questions & Answers
Exactly. Could you please share a link so that we can see how the blocks are configured?
-
RE: Close trade when take profit is higher then sell priceposted in Questions & Answers
Condition block 3 is using two 'pink' operands. The will not work properly without a 'For each trade' block above it.