Pages:
Actions
  • #1 by Maddox on 03 Sep 2009
  • Thought I’d post up some formulas I found, some of these aren’t compatible with MFP but could come in handy if you’re using excel. There doesn’t seem to be anywhere on the net that lists useful formulas, so I’m going to start one. Feel free to post any others you may know of. Share the wealth and all that  :)

    So I’ll keep things simple to start with.

    To convert decimal odds into probability(also known as binary):
    (100/back_price)    = Value%
    (100/5)       = 20%
    Or
    (1/back_price)   =0.value%
    (1/back_price)*100    = value%

    To convert binary to decimal odds:
    e.g. binary               = 55.55
    (100/binary)    = decimal odds
    (100/55.55)   = 1.80

    To green up a back bet for even profit:
    e.g. backed £10 @ 2.00, lay_price is now = 1.5
                   Lay stake
    (bm_backp*bm_backa)/lay_price                    = 13.33
    (10*2)/1.5            = 13.33

    Or
    (Profit+liability)/lay_price                      =13.33
    (10+10)/1.5            =13.33

    Or
    (back odds/lay odds)* back stake                    = lay stake
    (2/1.5)*10            = 13.33
    (bm_backp/lay_price)*bm_backa                   =13.33

    To green up a lay bet for even profit:
    e.g. layed £10 @ 2.00, back_price is now 3.0

    (lay stake*lay odds)/ new back odds   = back stake
    (10*2)/3            = 6.66
    (bm_laya*bm_layp)/back_price   =6.66

    Or
    (liability + lay stake)/ new back odds   = back stake
    (10+10)/3         = 6.66

    Or
    (lay odds/back odds)* lay stake   = back stake
    (bm_layp/back_price)*bm_laya   = 6.66

    I’ll post some more later

    Enjoy
  • #2 by Oxa (WellDoneSoft) on 03 Sep 2009
  • Thank you for the formulae, I'm sure the topic will be popular!

    But which of them do you think are not compatible with MF Pro?
  • #3 by Maddox on 03 Sep 2009
  • Thank you for the formulae, I'm sure the topic will be popular!

    But which of them do you think are not compatible with MF Pro?

    Haven't got round to posting them yet, was referring to certain excel functions.
  • #4 by Maddox on 04 Sep 2009
  • To find the percentage increase or decrease of two values
    e.g. Old price: 9 new price: 11
    ((new price  - old price) / old price) * 100 = % (returns a positive number if increased and negative if decreased)
    e.g. back matched bet: 5 current lay price: 3
    ((lay_price-bm_backp)/bm_backp)*100 = -40.00%
    ((3-5)/5)*100 = -40.00%
    Or using pdif_1
    Back price 1 minute ago: 4
    Back price now: 4.5
    pdif_1 will return: 0.5
    (((back_price-(back_price-(pdif_1)))/(back_price-(pdif_1)))*100) = 12.50% (price risen by 12.5% in last minute)
    (((4.5-(4.5-(0.5)))/(4.5-(0.5)))*100) = 12.50%

    e.g. back price 1 minute ago: 10
    back price now: 7
    pdif_1: -3.00
    (((back_price-(back_price-(pdif_1)))/(back_price-(pdif_1)))*100) = -30% (price dropped 30% in last minute)
    (((7-(7-(-3.00)))/(7-(-3.00)))*100) = -30%

    To covert a negative number to a positive number
    e.g.
    Current profit_loss: -100
    ((((profit_loss)-1)*-1)-1) = 100
    ((((-100)-1)*-1)-1) = 100

    To work out how much a number would increase by over a number of days
    e.g.
    Current bank: £100
    Percent increase per day 1%
    Number of days: 365

    bank*((percent/100)+1)^days = what bank would be if increased by 1% everyday for a year
    100*((1/100)+1)^365 = £3778.34

    To increase a value by a percent
    e.g. bank: £500
    increase by: 2%
    bank*(1+(percent increase/100)) = new value with added percent
    500*(1+(2/100)) = £510

    To decrease a value by a percent
    e.g. bank: 222
    decrease by: 10%
    bank/(1+(percent decrease/100) = new value minus percent
    222/(1+(10/100) = £199.80
  • #5 by MartinSteiner on 10 Sep 2009
  • maddox, thanks for sharing your formulas. I found some problem with this formula:

    To covert a negative number to a positive number
    e.g.
    Current profit_loss: -100
    ((((profit_loss)-1)*-1)-1) = 100
    ((((-100)-1)*-1)-1) = 100


    Why not use: -profit_loss  ?

    Or if you want to do a abs() funktion, this can be done by

    IF( profit_loss<0, -profit_loss, profit_loss )
  • #6 by MartinSteiner on 10 Sep 2009
  • Formula for equal Profit_loss on all selections when there are matched bets on all selections in the market:

    For every selection with positive profit_loss:
    enter a lay bet at lay_price with stake: profit_loss/lay_price

    For every selection with negative profit_loss:
    enter a back bet at back_price with stake: -profit_loss/back_price


    Formula for equal Profit_loss on all selections when there are matched bets some selections in the market: (i.e. you did only enter bets on selections with low odds)

    First find a selection with no matched bets. This selection has a profit_loss named profit_loss_no_bets

    For every selection with positive (profit_loss-profit_loss_no_bets):
    enter a lay bet at lay_price with stake: (profit_loss-profit_loss_no_bets)/lay_price

    For every selection with negative (profit_loss-profit_loss_no_bets):
    enter a back bet at back_price with stake:
    -(profit_loss-profit_loss_no_bets)/back_price


  • #7 by Maddox on 11 Sep 2009
  • Quote
    Why not use: -profit_loss  ?

    Or if you want to do a abs() funktion, this can be done by

    IF( profit_loss<0, -profit_loss, profit_loss )

    Thanks for that, that's much easier. I'll use that from now on.

    Thats's the main reason for posting formulas, there's always another way.
  • #8 by londolozi on 25 Oct 2011
  • I’m not sure the ‘distribute loss’ always works how I like. I get some funny outcomes. So I decided to create a manual formula which I am happy to share with you.

    My dilemma was getting left in a losing situation due to unmatched bets, or just distributing a profit between runners

    Here is an example:
    backa = $100 backp = 3.1
    layp = 3.0 laya = $35 (only a partial amount of my lay bet is matched)
    The last_traded has now turned against me and is 3.35
    Lay wager is worked out as $61.20. Net loss is -$3.8
    I’ve used r_ticks(last_traded,1) as a safe guard.

    (backa*(backp-1)-(laya*(layp-1))+backa-laya)/r_ticks(last_traded,1)

    In this scenario I have opted to distribute the loss between outcomes, you can opt for zero outcome if Horse wins and say -$5.15 if it loses.
    I think that is what 'distribute loss' does on occasions.

    The same formula will distribute profits if the layp is now in your favour.
    Nows let's assume the unmatched lay bet was cancelled and the market is now in your favour.
    layp is 2.7 laya is formulated to be $75.92
    Net outcome of $10.93 regardless of result.
    Enjoy.
  • #9 by MarkV on 07 Dec 2012
  • To calculate the opposite lay price to a back price:
    1 / (back_price -1) +1
    To calculate the opposite back price to a lay price:
    1 / (lay_price -1) +1
  • #10 by badboybav on 15 Aug 2013
  • hi, does anyone know if we are able to code to place trades according to certain scores in soccer? ie if a team is leading by w goals between time x & y then back z amount of gbp?
  • #11 by mcbee on 18 Aug 2013
  • hi badboybav
    yes, you would do this with conditions using
    market_score1
    market_score2
    markets minutes since the off


    mcbee
  • #12 by LarpHager on 23 Mar 2015
  • Yet again this topic saves me time and effort. Thank you
    • LarpHager
  • #13 by mikethebet on 25 Feb 2016
  • Hi
    Interesting topic I have tried this formula but it does not fire

    ((my_back*(bm_backp-1))*(1-cm_s))+ (my_back*.34)

    (amount of my back bet) multiplied by (price of last matched non sp back bet -1)
    multiplied by 1 -cm_s which is a set constant entered by user so could be 4 or 5 whatever
    rate their commission is, to give the profit return for the back bet

    plus
    (amount of my back bet) multiplied by .34 to give approximately a third of my
    back amount

    So the bet amount should be the profit from the last back bet plus approximately one third of my set back stake
    Help would be gratefully received
    Mike
  • #14 by mcbee on 25 Feb 2016
  • hi
    try         ((bm_backa*(bm_backp-1))*(1-commission))+ (bm_backa*.34)

    mcbee
  • #15 by mikethebet on 26 Feb 2016
  • Hi
    Thanks I have tried that and it does not fire either,
    I want to use the potential profit
    from my back bet to this add 0.34 of my set back stake and use that total
    as the stake for a saver bet.
    I have tried many equations but cannot get any to work as I wish
    Mike
Pages:
Actions