Skip to contents

This function calculates the Closing Line Value (CLV) of your bets.

Usage

clv_calc(bet_odds, closing_odds, type = "us")

Arguments

bet_odds

Odds for your bet(s) (-110, -105)

closing_odds

Closing Odds for the same bet (-132, -115)

type

Type of odds. Possible values are:

  • us, American Odds

  • dec, Decimal Odds

  • frac, Fractional Odds

Value

clv Closing Line Value of your bet

Examples

clv_calc(
  bet_odds = -110,
  closing_odds = -132,
  type = "us"
)
#> [1] 0.0862069
clv_calc(
  bet_odds = 2.5,
  closing_odds = 2.3,
  type = "dec"
)
#> [1] 0.08695652
clv_calc(
  bet_odds = 50/1,
  closing_odds = 20/1,
  type = "frac"
)
#> [1] 1.428571