Jump to content

Is there such a thing as a strategy for Crash? Share yours .


Ladyy

Is there a strategy for playing Crash?   

16 members have voted

  1. 1. Do you have a strategy for CRASH?



Recommended Posts

Just tell us all your strategies for Crash. IF you just play one luck tell us that too.  

I want a strategy - but I cannot find one that has positive results that last. 

🦋 █╬ ███ ██▄ █╬█ █╬█ 🦋         
🦋 █╬ █▄█ █╬█ █▄█ █▄█ 🦋
🦋 ██ █╬█ ███ ╬█╬ ╬█╬ 🦋

    

Link to comment
Share on other sites

  • 1 month later...
On 2/3/2020 at 11:16 PM, LadyDontTekno said:

Just tell us all your strategies for Crash. IF you just play one luck tell us that too.  

I want a strategy - but I cannot find one that has positive results that last. 

More like general knowledge:

Don't go all-in, even at a very low multiplier (I don't follow that rule)

Running martingale script, be prepared to have enough funds to outlast a long red-phase (exponential growth, anyone?)

Save yourself some headache and don't play at all if there is lag happening - or at least set a low enough auto pay-out. If it comes to quickly correcting a misclick, lag is your enemy

 

 

Link to comment
Share on other sites

  • 2 weeks later...

var config = {
  bet: { label: 'Apuesta', value: currency.minAmount, type: 'number' },
  payout: {label: 'Retirada', type: 'radio', value: 2.0, options: [{value: 2.00, label: '2x'}, {value: 1.40, label: '1.4x'}, {value: 2.20, label: '2.2x'}, {value: 2.30, label: '2.3x'}]},
}

function main () {
  var current = config.bet.value;
  engine.on('GAME_STARTING', function () {
    var latest = engine.getHistory()[0];
    if(latest.crash  > 199) {  // verde
      engine.bet(current, config.payout.value);
    }
  });

  engine.on('GAME_ENDED', function () {
    var latest = engine.getHistory()[0];
    // If we wagered, it means we played
    if (!latest.wager) {
      return;
    }

    // perdimos
    if (!latest.cashedAt) {
       log.info('Perdimos 😞 ' + current + currency.currencyName);
       current = current * 2;
    } else {
       current = config.bet.value;
    }
  });
}

Link to comment
Share on other sites

Oddly enough the average rounds between a payout is the payout - 1. 

25x = 24 rounds.  

Now the current longest losing streaks for the payouts pretty much makes all martingale setups impossible and the ones that are possible would make so little it wouldnt be worth it.


BUT The best strategy is and always will be dont play back to back to back to back to back rounds.  Wait and see if there is a good trend and hit it  then stop. Playing every single round of crash is exactly what you do not want to do unless you want to lose everything.  Think of it as the less crash rounds you can play the better so take your time and dont get FOMO

Intelligenci_logo_on_transparent.thumb.png.a0b4eeba91c8fb82b7749ebf5bcb9246.png

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...