Does the MartinGale strategy work?

did you just compare trading risk bitcoin to indexes? :joy: :joy: :rofl: :rofl: :rofl: :rofl: :rofl:

I asked your question to Roulette players. They said thereā€™s ā€œcold-chasingā€ strategies and ā€œhot-chasingā€ strategies.

For dozens (1:2 Risk Reward) the concesus was ā€œFibonacci Dozensā€ Fibonacci Dozens Betting System type of martingale for cold chasing, and ā€œOscarā€™s Grindā€ Wiki on Oscarā€™s Grind for hot-chasing.

Remaining 2% Traders do not work for 12% a year. Trading is a profession which can be a part time or full time used for Building capital not growing capital.

Your word again proved your in wrong place. You should look for better investment opportunity like ETF, Bonds, Mutual Funds, Index Funds, etc

There are several ETF and Mutual funds which beat Index funds like S & P 500 easily on short time. Index funds are lowest risk possible investment.

You should rethink, why your here. To build Trading as your Part-time or Second career along with your Job or Your looking for Investment plan to grow your money against the inflation which generated from your Job.

The Martingale strategy, which involves doubling your position size after a loss, is highly risky and generally not advisable in forex trading. While it can theoretically recover losses, it can also lead to significant drawdowns and even account blowouts during prolonged losing streaks. Effective risk management and strategies that do not rely on doubling down are typically more sustainable.

I failed to visit the Fib website that you have provided, thanks for your info anyway.
Iā€™ve used my coding knowledge + the help of chatGPT to build a testing system.
I think this is a dumb strategy anyway.

let accountBalance = 5000;
let betSize = 0.5;
let tradeCount = 0;
let consecutiveLosses = 0;
let winCount = 0;
let lossCount = 0;
let maxConsecutiveLosses = 0;
let totalProfits = 0;

function placeBet() {
  if (tradeCount >= 500) {
    console.log("Reached maximum trade count. Trading system stopped.");
    displaySummary();
    return;
  }

  if (consecutiveLosses === 0) {
    betSize = 0.5;
  } else {
    betSize *= 2;
  }

  if (accountBalance < betSize) {
    console.log("Insufficient account balance. Trading system stopped.");
    displaySummary();
    return;
  }

  const isWin = Math.random() < 0.35; // Win rate set to 35%

  if (isWin) {
    accountBalance += betSize * 2; // Assuming 1 to 2 risk-reward ratio
    consecutiveLosses = 0;
    winCount++;
    console.log("Trade " + tradeCount + ": Win");
  } else {
    accountBalance -= betSize;
    consecutiveLosses++;
    lossCount++;
    if (consecutiveLosses > maxConsecutiveLosses) {
      maxConsecutiveLosses = consecutiveLosses;
    }
    console.log("Trade " + tradeCount + ": Loss");
  }

  totalProfits = accountBalance - 5000;
  tradeCount++;
  updateDisplay();

  if (accountBalance <= 0) {
    console.log("Account balance reached $0. Trading system stopped.");
    displaySummary();
  } else {
    placeBet(); // Continue to the next trade
  }
}

function updateDisplay() {
  console.log("Account Balance: $" + accountBalance);
  console.log("Bet Size: $" + betSize);
  console.log("-----------------------------");
}

function displaySummary() {
  console.log("---- Trading Summary ----");
  console.log("Total Trades: " + tradeCount);
  console.log("Winning Trades: " + winCount);
  console.log("Losing Trades: " + lossCount);
  console.log("Highest Consecutive Losses: " + maxConsecutiveLosses);
  console.log("Total Profits: $" + totalProfits);
  console.log("-------------------------");
}

// Start the trading system
placeBet();

Wow, I plugged that in and itā€™s still trading ++

1 Like

Lol ā€¦ howā€™s it doing, overall? :smiley:

Not bad. About 10% a month so far. Iā€™ll put it up on the MQL5 marketplace once itā€™s ready. $_$

1 Like

this is too much risk. this can save you in a lot of position but it can also blow your account. I would not do that.

Lol :slight_smile:
15 consecutive losses will blow the entire account.
Unless you have a strategy that has a good win rate that will never make you lose 15 times in a row.

The way to avoid consecutive losing runs is to have a smaller R, obviously. On institutional trading floors, something close to 0.7 R is fairly standard (or at least very common) among intraday traders.

Yes it does work but just remember the less amount of pips or the lower the time frames, less forgiveness you have. Itā€™s very hard to bounce back, break even or turn profit with little room to work with.

According to your strategy it sounds like your 10 trades (if they went against you) would all happen within 100 pips. You would be risking more than 1% in that case.

I use a variation of the Martin Gayle system but itā€™s a swing system which allows price to believe. Biggest take away is you still need market and personal psychology. You need to understand what the overall trend is doing, where traders are, where institutions are, whereā€™s liquidity, trend lines, SR and what the fundamentals are currently. Although price goes up and down, it doesnā€™t make a straight path to itā€™s destination. Having more information helps with this strategy.

2 Likes

To believe that Martin Gayle himself is also trading it, maybe? :joy:

Which allows price to breathe*

1 Like

Ah, yes. Got it! Thanks - makes sense, of course. :sunglasses:

Iā€™ve been looking at different versions of this, but not using volume based bars. Sounds intriguing. Maybe Iā€™ll reach out with some questions at some point.

Sorry to butt in here. Back to Mr. Martin Gailā€¦

1 Like

Betting the same amount of capital on consecutive trades is not the Martingale strategy. The Martingale strategy is a gambling strategy - using it you double the size of the next position after each losing trade, and you keep doubling it until you get a winner, which pays for all the losers. You hope.

Itā€™s a rubbish system but can sometimes be a pointer towards trend-following, which is something which actually does work.

Youā€™re welcome, of course.

I gave only a very abbreviated/highlight-summary above, I appreciate (because I wasnā€™t even sure anyone would actually read it). I do make a living from it.

There are lots of all-slightly-different versions of it. I was taught, and I definitely believe, that all of them work notably more reliably with volume bars than with timed bars (but obviously thatā€™s with futures, not CFDs/spot).

I think he married Miss Fianna Fail, and they went off to the Republic of Ireland and lived miserably ever after.

2 Likes