yeah I thought so, does not matter
thanks anyway for your help
Latest posts made by e.so
-
RE: Coding an EA to start using another EAposted in Questions & Answers
-
Coding an EA to start using another EAposted in Questions & Answers
Hi there
I'm trying to control the opening / closing of trades made by an EA by using a "master EA", depending on the close of a candle.
Ex.
- First EA running on a EU chart => opening & closing trades
- Second EA running on another EU chart:
- If D1 candle closes above price xxx then (1) close all EU trades and (2) turn EA off
- Then when D1 candle closes back below price xxx, turn EA back on.
The first step seems partially OK to me: I think I can work on an EA that will close all EU trades based on one condition, but I don't know how to turn EA off.
The second step, resuming EA activity, is trickier in my view and I do not even know if that is possible, and I'd love to have your suggestions.
A dirty way to do that would be, instead of "turning off EA" and then "resuming EA activity", to kill all trades that open after the D1 candle closes above the level.
this would make the job, but spread costs would be significant...thanks for your help!
-
RE: Entry trade at MA crossover: function not reliable?posted in Questions & Answers
@jstap sur sorry should have done that earlier...
I just kept to close w/ candle ID 1, i'm checking the output atm
https://fxdreema.com/shared/EAaU2Iwnd
thanks again -
RE: Entry trade at MA crossover: function not reliable?posted in Questions & Answers
@jstap
Hi,
Thanks for your help.
Still not OK though...

-
Entry trade at MA crossover: function not reliable?posted in Questions & Answers
Hi again,
I'm still playing with an entry triggered long when a candle close above 8EMA. I've used the function described here:
https://fxdreema.com/documentation/builder/crossoverand is:
The issue I have is that there are a few entries that do not comply with these settings:

Green arrow is OK.
Red arrows though are not OK, and I cannot figure out why...If you have any idea, that would be great!
-
Restricting trading period triggers multiple positions on one candleposted in Questions & Answers
Hi
I got a question: I am using the example of trade given on the https://fxdreema.com/documentation/builder/crossover page, where a candle that closes above 20SMA enters a long trade.
My aim is to restrict trading activity for some period of time during the day, say 10-17 server time.
When I remove the "No trade" restriction, I have longs triggered throughout the day as expected.
Then I've tried two variables:
- Hours filter, which would have been my first choice, where I input 10-17 as trading range.
- Time filter, where I also input 10-17 as trading range
https://fxdreema.com/shared/GxxZVMYT
The result is the same whathever the filter that is applied:
- No trade outside of the trading range, which is good
- 1st candle that matches the "candle cross MA" trigger opens multiple long positions.
Why would that be?
thanks for your help!
-
RE: Coding a TP=1R or TP=2xSLposted in Questions & Answers
@jstap Oh i did not see that, that's handy!
thanks for the help -
Coding a TP=1R or TP=2xSLposted in Questions & Answers
Hi,
I've started playing with this great tool, looks quite nice!
I just got a question the answer of which i did not find.
I have a dynamic SL (say below candle n-1), and I'd like to have a similar dynamic TP, like TP = 1 x SL or 2 x SL etc.
is there a way to do that?
thanks!