Honestly I didn't understand the logic of your entries... but a double crossover is almost impossible to happens.
Posts made by Alex81
-
RE: 2 type MACDposted in Questions & Answers
-
RE: 2 type MACDposted in Questions & Answers
if you use crossovers for both conditions, it is almost impossible that they happens at the same bar. Try to have one condition with > and the other with x>, and then switch the conditions. The opposite for sell. So 4 combinations in total.
It should do the trick. -
RE: Create a variable from multiple buffersposted in Questions & Answers
Ok, I have a variable made from the summation of other 2 variables. Now I want to use it as a signal when it cross over-under a specific value.
It doesn't work this way...
Any suggestion?
-
RE: Create a variable from multiple buffersposted in Questions & Answers
@sktsec ok for 2 values. What if I need 3?
-
RE: Create a variable from multiple buffersposted in Questions & Answers
Sorry for the delay, I make a simple example: I have 3 RSI with 3 different period (14, 34, 72). I want the summation of all three as a variable, candle after candle.
-
RE: Create a variable from multiple buffersposted in Questions & Answers
No they don't repaint, they are just variations of rsi (like rsi-oma) or cci. Could you put an example for me?
-
RE: QUASIMODO FOREX STRATEGYposted in General Discussions
SMC strategies are almost impossible to recreate on EA, even for real programmers!
-
Create a variable from multiple buffersposted in Questions & Answers
Hi, I'd like to create a variable that should be a summation of different buffers from different indicators (f.e. rsi and stochastic, but always bounded indicators), then use this variable as a signal when it crosses zero value; has anyone achieved something similar?
-
RE: Decisive indicators, supporting indicatorsposted in Tutorials by Users
Another way to use this indicator: put 2 instances with different periods in the same window, and look when all lines crosses over or under 50. It seems a good trend spotter.

-
RE: Decisive indicators, supporting indicatorsposted in Tutorials by Users
Amazing concepts here, thaks @PhiLykia ! Seems like you used my martingale code!
-
RE: How do I use several buffers at the same time?posted in Questions & Answers
@clubdio said in How do I use several buffers at the same time?:
Yes, that's how I've used it so far.
Unfortunately, many signals do not appear this way.
Or at the end of the cycle, there will be a loss.
Well, there is still room for improvement.
Thank you all for your help and advice.Trust an advice from a man who has tried countless times to use multi-timeframes in his EAs: they don't work.
It seems visually amusing, but in real time there is too much lag between the opening and the closing of the higher TF. Only time I saw it working is when you use the immediately upper Tf (ex. 5m on 1m chart).
Don't waste time anymore. -
RE: How do I use several buffers at the same time?posted in Questions & Answers
@sktsec said in How do I use several buffers at the same time?:
@clubdio
Your indicator repaints not only the current open bar. It erases all previously signals that doesn't fit the trends!Exactly.
There is only one way to make it usable: take the higher TFs all green/red and use the current TF as a trigger when it changes color. -
Advanced EA Frameworkposted in Tutorials by Users
Hi friends,
after hours and nights spent on fxDreema I finally created a structured framework to use as a base for my EAs. You only have to pick an indicator (or group of) to change your entry conditions. Here I just used a simple EMAs crossover.
It has martingale system to provide multiple entries if the entry conditions is still valid, a breakeven option and multiple money closing according to the amount of orders.Let's see in detail what it does:

- Allow trading in different hours (London, NY, Asia)
- Use Technical exit: all trades will be closed when entry conditions fail
- Lot Multiplier: it allows Martingale entry if the price goes against your direction while entry condition is still valid.
- Distance Pips: the distance between entry and the first martingale order
- Close Multiple Order: if you have more than one open order but less than MaxOpenTrades, the system will close all orders when indicated profit (in money is reached)
- CloseSingleOrder: if you have only one open order (it usually means your entry is good) it will be closed in profit at the selected gain. I usually set it higher than the previous one.
- CloseEmergency: when Martingale has reached its full limit, it close at indicated gain (you could also set a negative value).
- Cut loss: it close every orders when reached a % drawdown of the account (I don't use it)
- Breakeven: you can set a distance in pips of when to activate BE and how many pips in profit for the new SL.
If you wanna use different entry conditions you can simply change the blocks 1991 and 1992, but remember to change also blocks 1995 and 1996 for exit conditions according to your strategy.
I created only an MT5 version because I don't use anymore MT4, but if someone wants to make an MT4 version feel free to do it.
I hope you will benefit from this and you will improve and share it with your ideas.
Good luck!
-
RE: How do I use several buffers at the same time?posted in Questions & Answers
Consider that the higher TF will repaint so the signals are not what you see on chart... Been there, done that.
This kind of Indis are useless for automatic trading. -
RE: Cut loss at % and stop trading for the dayposted in Questions & Answers
@jstap but this would leave the block off indefinitely... or not?
-
Cut loss at % and stop trading for the dayposted in Questions & Answers
Hi all,
I use this snippet to close out a group of positions at a certain % of loss without using a stop loss.https://fxdreema.com/shared/tC8DjC6N
How could I implement a block of trading until the next day?
-
RE: record most drawdown that created by EA (MT5)posted in Questions & Answers
could you share how you did it?
-
Pending stop order that expires after x barposted in Questions & Answers
I'm having trouble using the "buy/sell pending order" block: I don't understand how to input how many pips away the order to start and how to make it disapper after x bars if not triggered.
Thanks anybody for the support