Pages:
Actions
  • #1 by Darth on 14 Aug 2017
  • Hello!
    How do I put to recover the lost stake + profit on a trigger in back?
    Thank you!
  • #2 by Jim Vincent on 15 Aug 2017
  • Hi,

    There is a variable, "last_lost" which is the amount lost since the last win, which I think is what you want. 

    Set up a "set user variable" 

    amt_to_bet = default_backa + last_lost

    or however you want to calculate the amount to bet. Could be

    amt_to_bet = default_backa + 1.10 * last_lost

    to recover 110% of what you have lost.

    NOTE: You don't really use the equal sign, but rather use the variable name and value parts of the "set user variable" trigger.

    Then use a "back" trigger on Favourite, with amount "amt_to_bet".

    As ever, try in test mode first.

    Jim
  • #3 by Darth on 16 Aug 2017

  • Many thanks for your help Jim.
    Unfortunately my English is not very good. Can you help me by putting this variable in the attached trigger?
  • #4 by MarkV on 16 Aug 2017
  • Hi
    you can also use a formula in the amount field where you have "ba"

    this will use ba as the initial back amount, or will double the back amount after each loss:
    IF(losses=0, ba, hist_1_backa*2)


     
  • #5 by Darth on 17 Aug 2017
  • Hi
    you can also use a formula in the amount field where you have "ba"

    this will use ba as the initial back amount, or will double the back amount after each loss:
    IF(losses=0, ba, hist_1_backa*2)


     
    Thanks!
Pages:
Actions