I would say that you need several strategies in the same bot, 1 low volatility strategy, one with a lot of volatility, one trend, one range, one counter trend, I think the real key to success is not entry point but the objective was achieved, an EA with perfect TP and SL so that you can be a winner, moreover it would take the long term and the short term, I completely changed the EAs by adding swing
Best posts made by biez6900
-
RE: Let's break this tableposted in General Discussions
Latest posts made by biez6900
-
RE: Calculate Weight Average Open Priceposted in Questions & Answers
`thanks deepseek, create a function here : https://fxdreema.com/studio and use that
-
RE: Calculate Weight Average Open Priceposted in Questions & Answers
//| Fonction pour calculer le prix moyen pondéré par le volume | //+------------------------------------------------------------------+ double CalculateVolumeWeightedPrice() { double totalVolume = 0.0; // Volume total des transactions double totalValue = 0.0; // Valeur totale pondérée par le volume // Parcourir toutes les transactions de la position actuelle for (int i = 0; i < PositionsTotal(); i++) { // Sélectionner la position if (PositionGetTicket(i)) { double volume = PositionGetDouble(POSITION_VOLUME); // Volume de la transaction double price = PositionGetDouble(POSITION_PRICE_OPEN); // Prix d'ouverture de la transaction // Ajouter au volume total et à la valeur totale totalVolume += volume; totalValue += volume * price; } } // Éviter une division par zéro if (totalVolume == 0.0) { return 0.0; } // Calculer le prix moyen pondéré par le volume double volumeWeightedPrice = totalValue / totalVolume; return volumeWeightedPrice; } -
simple observationposted in General Discussions
if you know when to play the breakout or the rebound, even the simplest of signals like the crossing of a moving average 20 can be enough to make hundreds of good trades
-
RE: GAP EA F40 sell order stopposted in Bug Reports
thank you for taking the time to try to help me, it's nice
-
RE: GAP EA F40 sell order stopposted in Bug Reports

I don't think it's useful, on the screen as in the project but as you can see I reversed it on the candle ID -
RE: Distant Between Bandposted in Questions & Answers
here we do not count the lower limit to the lower limit +1 but the difference between the deviation terminal 4 to the deviation terminal 2 and we look for a positive evolution, and by taking a step we avoid too weak evolution
-
RE: GAP EA F40 sell order stopposted in Bug Reports
the robot waits for the first candle on the CAC40 to have passed (Timeframe M5) and places a stop/limit order on the high/low on the first candle of the day to hope to fill the gap/2 this makes it possible to avoid some gap of breakup
-
RE: Distant Between Bandposted in Questions & Answers
yes jstep you are right about the answer you gave me, doing as would even be better -
RE: Distant Between Bandposted in Questions & Answers
it is however simple, the upper limit returns a price the lower limit also returns a price, I subtract the 2 with a formula block to measure the distance in price
if you want to measure the evolution you do the same on x previous candle with a condition block which checks the evolution of the varialbe