@l-andorrà , @ROAR, @JSTAP any contributions please
Posts made by ralph1
-
RE: Help needed on how to create a bot based on break of structuresposted in General Discussions
-
Help needed on how to create a bot based on break of structuresposted in General Discussions
Hello guys, I need help on how to create a bot that trades based on the break of structures. Below is how it should work:
For Buys:- The market should be in a downtrend (having a series of lower highs and lower lows)
- If the first condition is true, wait for a break of a lower high
- After the break, look for a bearish indecision candle(with a body that has less than 4 pips) from the series of candles that broke the lower high.
- The candles should reverse to tap into this bearish indecision candle to trigger a buy
For Sells
- The market should be in an uptrend (having a series of higher highs and higher lows)
- If the first condition is true, wait for a break of a higher low
- After the break, look for a bullish indecision candle(with a body that has less than 4 pips) from the series of candles that broke the higher lows.
- The candles should reverse to tap into this bullish indecision candle to trigger a sell
All contributions will be appreciated, thanks
-
RE: Confirm divergence on two timeframes before placing a tradeposted in Questions & Answers
The ltype and sltype variables are enumerations that let the user choose from the lot type i.e fixed lot and auto lot same for the sltype.
-
Confirm divergence on two timeframes before placing a tradeposted in Questions & Answers
Hi guys, I'm creating a multi-strategy EA which is divergence and also a combination of some moving averages. And this is how I want it to be:
For buy trades:- If there is a bullish divergence on the 30m and 15m timeframe. if not, check if the 50SMA is below the candles. If yes, the 9SMA should cross above the 18SMA.
So for buy trades, one of these conditions(or) strategies should be executed. and vice versa for sell trades.
I want you guys to take a look at the project if I'm on the right path or there's something I need to change, because the check position count is not working. Trades are placed just once.
-
RE: Hedging EA helpposted in Questions & Answers
Yeah, I totally understand. But I thought maybe through backtesting with the boom and crash indices, you could get the idea I was talking about.
-
RE: Hedging EA helpposted in Questions & Answers
I found this EA somewhere which is basically for boom and crash indices only and was wondering if anyone has an idea on how to create such EA.
-
Hedging EA helpposted in Questions & Answers
Hello guys, does anyone have an idea of how to create this kind of hedging EA? EA file is attached below.[0_1631543756834_Boom Crash Index.ex5](Uploading 100%)
Download here -
RE: How to set lot size from fixed to risk per trade in(%)posted in Questions & Answers
Oh ok, will give it a try. Thank you very much for the help.
-
RE: How to set lot size from fixed to risk per trade in(%)posted in Questions & Answers
Thank you for the help, so with the % of balance, what does the 100 in the second input mean?

-
RE: How to set lot size from fixed to risk per trade in(%)posted in Questions & Answers
Oh ok, thanks. So how can I add all the options in the input section so that the user will be able to choose the type of lot size the EA should work with? Either fixed lots, risk per trade(in %) etc?
Thanks in advance. -
How to set lot size from fixed to risk per trade in(%)posted in Questions & Answers
Hi guys, how do I change the lot size from fixed to risk(in percentage) per trade according to the account balance?
Thanks in advance. -
RE: I need help with my divergence based EAposted in Questions & Answers
It works now, I really appreciate the help
-
RE: I need help with my divergence based EAposted in Questions & Answers
@jstap I've tried it but no positions were taken during the backtest
-
RE: I need help with my divergence based EAposted in Questions & Answers
Thanks bro, let me give it a try

-
I need help with my divergence based EAposted in Questions & Answers
I want the EA to get the high of the market within a certain number of candles for sell positions and the low of the market depending on the number of candles specified for buy positions.
After the highs and lows are detected, then the divergence block follows.This is the link to the project https://fxdreema.com/shared/M1PgAfTuc
Thanks in advance.