Pages:
Actions
  • #1 by tdadba on 18 Sep 2018
  • Hi guys,

    I want to put incremental bets in a horse race, for example:

    In the favourite put $10

    In the second put $11

    In the third put $12

    And so on...

    How can I do this?

    Thanks;
  • #2 by MarkV on 19 Sep 2018
  • Hi
    it depends when you want to place the bets (ranks can change frequently)
    you can use a formula like this in the amount field :
    IF(sel_order = 1, 10, IF(sel_order = 2, 11, IF(sel_order =3, 12, 13)))
    or
    use 3 separate triggers, one for each rank and amount:
    amount: 10
    condition: selections rank is equal to 1
    once per market

    amount: 11
    condition: selections rank is equal to 2
    once per market

    etc...
  • #3 by liltbrockie on 25 Sep 2018
  • Or simply set the amount to = (rank+9)
Pages:
Actions