Pages:
Actions
  • #1 by slybee on 17 Dec 2012
  • Hi All,

    Can anyone help me out of this trigger. I want to bet 5 percent (5%) of bank plus last stake of loss.

    Bet 5% of bank
    Add last stake when loss occurs.

    Any help appreciated.
  • #2 by mcbee on 17 Dec 2012
  • hi
    copy and paste this into the amount box.

    IF(test_mode=1,(test_balance*1.05)+last_lost,(balance*1.05)+last_lost)

    be carefull if you get more than 1 loss the stakes can get big.


    mcbee
  • #3 by slybee on 17 Dec 2012
  • Hi mcbee,

    Thanks a lot for your help. Unfortunately is in the wrong order. What I am trying to do is retrieve the last LOSS STAKE not the last loss amount.

    Example: If I lay £5 and loss. The next stake should be Percentage of bank + £5.

    I hope you get me right?

    Thanks for your help.
  • #4 by mcbee on 17 Dec 2012
  • hi
    if you want to recover your last stake and no other then.

    IF(test_mode=1,(test_balance*1.05)+hist_1_laya,(balance*1.05)+hist_1_laya)


    mcbee
  • #5 by slybee on 17 Dec 2012
  • Thanks mcbee,

    One more question. Can you help me with a back trigger that will increase stake by 10% after a loss?

    Thanks.
  • #6 by mcbee on 17 Dec 2012
  • hi
    if it just one increase after a loss then.

    (your stake amount)+IF(losses>0,(your stake amount)*.10,0)

    if 10% per loss then.

    (your stake amount)+IF(losses>0,(losses*(your stake amount)*.10),0)


    mcbee

Pages:
Actions