Тёмный
Wagered On Tilt
Wagered On Tilt
Wagered On Tilt
Подписаться
Learn how to make sports betting models to help improve and find your edge in the NFL, NHL, MLB, NBA and more!

Using data models and more, you can learn how to effectively wager to help reduce your losses, and eventually turn a profit. See how a great form of entertainment can become even more interesting.

The goal of this channel is to help broader the minds of anyone looking into sports betting, and trying to find ways they can create and develop their own betting process.

If you are interested in signing up for Unabated, you can do so here: unabated.com/?ref=mtzmzwj
Intro to Stats  Probability Trees
18:53
7 часов назад
Prop Sports Betting Data
15:18
21 час назад
Sports Modeling   Basic Stats
17:17
14 дней назад
NFL Week 1 Recap and Week 2 Prop Look
15:51
Месяц назад
Weibull and Lognormal Sports Betting
17:11
Месяц назад
NFL Season Prep
11:12
2 месяца назад
Negative Binomial Regression - Sports Model
11:59
4 месяца назад
Sports Modeling Linear Regression Python
16:16
6 месяцев назад
Linear Regression and Player Stats in Excel
12:59
7 месяцев назад
How to Scrape Data Using Pandas Tables
11:01
7 месяцев назад
Sports Modeling Excel Logistic Regression
12:09
8 месяцев назад
Excel Line Up Model - Estimated Possessions
10:24
8 месяцев назад
Excel Line Up Model - Calculate Playing Time
15:36
8 месяцев назад
Intro to Excel Modeling   Data Truncated
13:59
10 месяцев назад
Excel Making a Model on League Averages
22:59
10 месяцев назад
Scrubbing and Remap Your Data for Betting Models
27:58
11 месяцев назад
Sports Betting Web Scraper
21:18
Год назад
Sports Modeling Python Basics
13:05
Год назад
Install Python for Modeling
6:06
Год назад
Комментарии
@flaviosena7748
@flaviosena7748 15 часов назад
One of the best around here.. thanks mate
@DBLvike
@DBLvike День назад
For win %, not counting tie scores for 1 team on the poisson, the using 1-win% for second team would not give a skewed result?
@wageredontilt1649
@wageredontilt1649 День назад
Yes it definitely will, however it’s more of setting the value of a tie as a loss for the team you calc for. So if I’m trying to find the real prob of a win for team A and team B, and don’t count ties, I’d have to calculate each individually. I can also calculate the tie scenarios as well, but if it’s ties lose, and I want to calculate the prob to win, I’d calc team A and just 1-P(A) because it’s faster.
@iankelly9181
@iankelly9181 2 дня назад
These are really good videos for basic statistical information that we can look to build models on, always enjoyed your content. Looking forward to the next why we use these and some practical applications.
@wageredontilt1649
@wageredontilt1649 2 дня назад
Glad you’ve liked the content. I did receive lots of requests for starting with zero Excel and stat basics, so we are gonna do this series from nothing and just keep building up to models that can be modified for actual use
@jefraz2003
@jefraz2003 2 дня назад
Hey T, thanks for the videos! In the string "ws.Range("B" & currentRow).PasteSpecial Paste:?xlPasteFormulas" I can't make out the character between the : and the xl. Would you be able to help? Thank you!
@wageredontilt1649
@wageredontilt1649 2 дня назад
Not sure, but here is the section of the loop: For currentRow = formulaRow + skipRows + 1 To lastRow Step skipRows + 1 ws.Range("B" & formulaRow & ":H" & formulaRow).Copy ws.Range("B" & currentRow).PasteSpecial Paste:=xlPasteFormulas Next currentRow
@wageredontilt1649
@wageredontilt1649 2 дня назад
Think you meant the "=" but if not the full thing is in comment above
@jefraz2003
@jefraz2003 2 дня назад
Perfect! Thank you!
@kylegraham2169
@kylegraham2169 3 дня назад
hey, i know this is super late but i set up my poisson distribution but my table only sums to 99.98%. Is this how its supposed to be or did i do something wrong elsewhere?
@wageredontilt1649
@wageredontilt1649 2 дня назад
Could be a rounding error, or a possible scenario you didn't grab that looks like a 0.0% but is actually more of a .0001 kind of number. Only other thing I can think of is that perhaps once of the cells that is calculating is referencing another value accidently.
@basiliszag
@basiliszag 3 дня назад
Awsome!
@a1marky421
@a1marky421 9 дней назад
If you want me to automate your whole process with python ill do it for free.
@thiagofelipe2121
@thiagofelipe2121 11 дней назад
Hi, im from brazil, good channel and thnaks for share this sheet, in 21:49 What is the formula for probabilities? (Chance to win)
@wageredontilt1649
@wageredontilt1649 7 дней назад
It would be a count for whatever you are aiming for. So I’d target the column of outcomes =countif(L:L, “A”)/10,000 this would give the prob Away winning given the outcomes of the Monte Carlo
@eduardosalas3509
@eduardosalas3509 15 дней назад
Is this only for receptions or can it be for like other stat categories like receiving yards and other stats like that
@wageredontilt1649
@wageredontilt1649 11 дней назад
This can be used for other stats like receiving yards, and other stats that are non-discrete (non-count). This is more of an intro model which is why I used it for a discrete type of prop like receptions. For discrete, you would want to use more of binom.dist or poisson depending upon what specifically you are looking for.
@-Tharos-
@-Tharos- 16 дней назад
👏
@jordang8135
@jordang8135 17 дней назад
Awesome content as always! Thank you
@camberribbons4925
@camberribbons4925 Месяц назад
@trevorhorst4393
@trevorhorst4393 Месяц назад
New to python. What program do you use to put the python coding in?
@wageredontilt1649
@wageredontilt1649 Месяц назад
The environment I use is PyCharm. There are several options out there, but for me I like the ease of PyCharm. Some have also tried using googles cloud options to not need to store and run locally, but I prefer to have it run on my machine.
@-Tharos-
@-Tharos- Месяц назад
Nice explanation.
@wageredontilt1649
@wageredontilt1649 Месяц назад
Thanks! Hopefully it is of use to everyone, and they integrate into their models
@joshuamorgan2394
@joshuamorgan2394 Месяц назад
is using python on google colab going to be the same as your example
@wageredontilt1649
@wageredontilt1649 Месяц назад
It will be nearly the same. You won’t need to go find as much stuff to install or manage. As far as code, not sure how big the projects can go in their notebooks, but the code itself should all be fine
@wageredontilt1649
@wageredontilt1649 Месяц назад
I haven’t worked very much in the collab environment, so that is based on my limited knowledge
@speedzillaa
@speedzillaa 2 месяца назад
hi, im building a model just like this, to calculate the winning chances of Team A vs Team B, the optimal way of doing it is scrapping each player of each team individually?
@wageredontilt1649
@wageredontilt1649 2 месяца назад
It can be. It really depends upon what stats you think will have an impact on the outcome. if the way Player A plays impacts Player B. Then you would want to use player level stats. If you think team level stats are reliable to still calculate probability of winning, then you can stick with team level and other stats. Some sports, team level can be used, in others player level and play by play would be needed.
@morganlindsey6713
@morganlindsey6713 2 месяца назад
is there a way to find stats that are predictive and not descriptive?
@wageredontilt1649
@wageredontilt1649 2 месяца назад
So, hopefully this is going to answer the question, if I understand it properly. All stats are descriptive. Then depending upon your question you are asking, the stat could be more predictive than another. The first step is to know what specific question you are asking to solve, then find related stats that independently or have co-linearity, to answer your question. If we were asking questions about the NFL, we could say weather stats, defensive stats, and offensive stats all can be combined and worked together to form predictions. So the past descriptive stats could then answer questions like How many receiving yards will player XYZ get since in the past we have seen these stats form certain patterns/trends, or using things like linear regression.
@famoustiz4624
@famoustiz4624 2 месяца назад
You have a video like this but for MLB?
@wageredontilt1649
@wageredontilt1649 2 месяца назад
I have not fully done a walk through on mlb. I did do some for Unabated that you could check out.
@jhlvlv
@jhlvlv 3 месяца назад
These videos have been fantastic, and you do a great job of walking through it, so it's not just copy and paste, you allow us to understand the entire process. Any chance that you could do a futures type model? (i.e. win superbowl, or season wins etc.) Thanks!
@wageredontilt1649
@wageredontilt1649 3 месяца назад
So, unfortunately a futures model for Superbowl/Season Wins is far more complex than what I honestly would cover, as it requires probabilities of teams winning different games, injuries, draft spots of teams (tanking), etc. I prefer to use Unabated season tool for finding edges in the market. I have a LOOSE model that gives me some ideas, then use the tool to guide further to find any decent bets. You could do a monte carlo sim where you were to do a power rating model, then sim each week of the season adjusting power ratings, which then adjusts the winner each week.
@pumpedupottis679
@pumpedupottis679 3 месяца назад
Hello, when trying to run my code just as you did 30:10, i get an Error response: File "parsers.pyx", line 574, in pandas._libs.parsers.TextReader.__cinit__ File "parsers.pyx", line 663, in pandas._libs.parsers.TextReader._get_header File "parsers.pyx", line 874, in pandas._libs.parsers.TextReader._tokenize_rows File "parsers.pyx", line 891, in pandas._libs.parsers.TextReader._check_tokenize_status File "parsers.pyx", line 2053, in pandas._libs.parsers.raise_parser_error File "<frozen codecs>", line 322, in decode UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 262: invalid continuation byte Do you have any idea how to fix it? It would be really appreciated as Ive already been trying ChatGPT to help me. Cool video btw!
@wageredontilt1649
@wageredontilt1649 3 месяца назад
The issue is with the format of the text/values in the file you have. They must have some kind of special charter. Often this can happen with player names. You can either clean up the values in the file, or use additional code to tell it to ignore the issues. I can get the line of code you’d need in a day, I need to grab from one of my other models.
@wageredontilt1649
@wageredontilt1649 3 месяца назад
Okay, so for the file you are importing, I would add ", encoding="ISO-8859-1" " That should help with the encoding issue.
@bkkerevan2654
@bkkerevan2654 3 месяца назад
Another great video, it would be interesting to see which football markets this could be applied to (soccer in the US). Do you have any experience/tips?
@wageredontilt1649
@wageredontilt1649 3 месяца назад
Yes, this could be used in shots, goals, and corners.
@wimsickle6173
@wimsickle6173 3 месяца назад
I attempted this and I get error "No such file or directory found: 'MLS Team Game Stats.csv'" This line is supposed to pull all the data from a csv on fbref right? What does the encoding part do. Where did you come up with that number and the name for the csv? Wim
@wageredontilt1649
@wageredontilt1649 3 месяца назад
The MLS file will contain urls that I want to loop through for the MLS data on fbref. You would need ne to create this file so that allow the scrapper to pull in the information. The encoding portion allows for unique characters to be properly handled by the Python script so it doesn't fail out if it see's a non-standard character in a name.
@melancholiac
@melancholiac 3 месяца назад
Negative Binomial is new to me. Thank you for posting.
@Actapguru
@Actapguru 3 месяца назад
I literally used the same exact code on python as you did, and got the same output, but when I selected all and copied and pasted it into excel, it didn't turn into a table and instead stayed as code. What did I do wrong? Thank you!
@wageredontilt1649
@wageredontilt1649 3 месяца назад
So, usually once you paste it in for the first time, you will need to modify the data to match a table, however that setup should continue to exist. Did it at least paste in as some readable values, or is it all in column A with html?
@Actapguru
@Actapguru 3 месяца назад
@@wageredontilt1649It was just html in column a. So weird. I also switched the settings to split by column and it didn’t do anything. Thank you for responding!
@wageredontilt1649
@wageredontilt1649 3 месяца назад
@@Actapguru That is odd. The only other thing I would suggest is maybe point your excel to a website, and import html. Then give it a try by copying and pasting in the html from python. Not sure why it is only wanting to display it as html. The only other thing I can think is that the html is incomplete so it doesn't know how to render.
@Actapguru
@Actapguru 3 месяца назад
@@wageredontilt1649 Ok thank you! What python software do you use? i use pycharm so i’m wondering if it delivers the html differently
@wageredontilt1649
@wageredontilt1649 3 месяца назад
It’s an excel issue, I use the same Pycharm. Some have had issues with it before as well
@mykindofgaming7345
@mykindofgaming7345 3 месяца назад
I’ve been using Monte Carlo for the last two days. And I’m quite impressed. I was lucky to find it by experimenting. 😆
@wageredontilt1649
@wageredontilt1649 3 месяца назад
Yeah, MC works really well when you have small data sets. You can also bootstrap data; and then MC for really good results.
@mykindofgaming7345
@mykindofgaming7345 3 месяца назад
@@wageredontilt1649 wow thanks for that. I will try that today
@Gators-kk6pz
@Gators-kk6pz 4 месяца назад
Sorry if this is dumb question, but how would you go about running this regression in a Monte Carlo sim? Would you randomize targets (if so to what upper range) and the probabilities and calculate the formula 10,000 times?
@wageredontilt1649
@wageredontilt1649 4 месяца назад
You’d likely want to randomize it all for the formula. So, I’d set it up to randomize targets, and probabilities, then take that value and put through regression formula and save the result. Then have the MC do it again, and so on for 10k loops. Then you’d plot or measure the results of those 10k scenarios.
@morganlindsey6713
@morganlindsey6713 4 месяца назад
i can tell you have read statistical sports models by andrew mack just by how you are setting this up lol
@wageredontilt1649
@wageredontilt1649 4 месяца назад
They are both really solid books. I think everyone should read them that want to start to model. It helped me for my intro understanding. If you like the books, I’d also give him a follow on X. Has really good insights.
@huwjarse5761
@huwjarse5761 4 месяца назад
Thanks, enjoyed that and explained clearly
@videosangel666
@videosangel666 4 месяца назад
best way to see a teams future performace is more recent performance
@shawnyc1993
@shawnyc1993 4 месяца назад
Appreciate the video!
@depressedessendonfan5702
@depressedessendonfan5702 4 месяца назад
What are you using so you can open webpage front end and back end at the same time next to each other (complete noob)
@wageredontilt1649
@wageredontilt1649 4 месяца назад
I am just using the inspect feature, which is in most browsers. So, if you are using Chrome, or Firefox, if you right click on the screen. The floating options will appear, and you click on inspect. That should open up the html on the screen.
@jefffriend1306
@jefffriend1306 4 месяца назад
I can't read.
@wageredontilt1649
@wageredontilt1649 4 месяца назад
Sorry it didn’t go into enough detail on the model building for you. What aspect of the model building piece were you hoping to find that wasn’t covered?
@jefffriend1306
@jefffriend1306 4 месяца назад
@@wageredontilt1649 Sorry I miss read the Title. Changed my comment.
@wageredontilt1649
@wageredontilt1649 4 месяца назад
@@jefffriend1306 ​ @jefffriend1306 Okay, thank you for the reply back! If there is anything specific that you were hoping to see on modeling, or sports betting that you don't see in any of my content, please let me know. I can try and work something up.
@jefffriend1306
@jefffriend1306 4 месяца назад
@@wageredontilt1649 right now I am trying to learn all I can about differnet models for different NFL stats. I really know nothing about any of it. Thanks for the reply!
@funsportsfacts
@funsportsfacts 4 месяца назад
Got a question. You grab pitchers FIB but where does it come in to the calculation or is it just for show ?
@wageredontilt1649
@wageredontilt1649 4 месяца назад
For the FIP v AVG is displaying in the cell as a gut check when looking at your numbers, and the actual FIP is used within Esta RA/IP, which then cascades down into the other cells.
@rodgersaysex6576
@rodgersaysex6576 5 месяцев назад
Hi there how some good proper tips on what bets to get on thanks champ
@wageredontilt1649
@wageredontilt1649 5 месяцев назад
Prop bets are your best option for +EV plays consistently
@ianharkins2172
@ianharkins2172 5 месяцев назад
I keep this video bookmarked, I always forget how to do these conversions but this makes it super easy.
@StertyOG
@StertyOG 5 месяцев назад
Nice video!! Ever done a rushing 1st down model on the nfl? Currently wanna work on one but don’t know where to start
@wageredontilt1649
@wageredontilt1649 5 месяцев назад
I’ve done differing props. When you say 1st down rushing prop, can you explain the prop a bit more? How many first downs? Who will get the first down? Etc
@StertyOG
@StertyOG 5 месяцев назад
@@wageredontilt1649 yes my bad, I could’ve explained myself better 😂 and thank you a lot for replying too! I currently wanna make a model on which team in the nfl will get more rushing 1st downs than the other one. For example, let’s say it’s week 7 of the nfl season, and you have Baltimore at home and Steelers playing away. Which team will have a better rushing game as a team? As well, is there a way to implement a defense rank then use that rank against your prediction of your rushing 1st downs? Sort of like a Bayesian model
@wageredontilt1649
@wageredontilt1649 5 месяцев назад
@StertyOG for something like this you will want to account for predicated score, and occurrence of runs in sets of downs. You’d also want to bake in the probability the defense gives up a pass v giving up the run, and bake in the distribution of yardage a team earns per run per down and what defense gives up.
@StertyOG
@StertyOG 5 месяцев назад
@@wageredontilt1649 thank you! I’ll try!
@filipelimartins
@filipelimartins 5 месяцев назад
Do you recommend any books?
@wageredontilt1649
@wageredontilt1649 5 месяцев назад
Books by Andrew Mack are amazing and so are Ed Millers “Intercept”
@camberribbons4925
@camberribbons4925 5 месяцев назад
🙂thank you
@seanfdaly4
@seanfdaly4 5 месяцев назад
haha. Why does my data analysis go in reverse? Better states = lower probability?
@wageredontilt1649
@wageredontilt1649 5 месяцев назад
It would depend upon what you set your pass fail probability too, as well what you mean better stats = lower probability. Do you have an example of data you see that happening with?
@seanfdaly4
@seanfdaly4 5 месяцев назад
When I add the IF statement, it gives me a #REF error for the 0 and does just fine for the 1...help
@wageredontilt1649
@wageredontilt1649 5 месяцев назад
Is the IF for the p()? If so, it sounds like there is a reference key mistaken. Can you copy and paste the formula you have into a comment? I can take a look from there.
@nap1346
@nap1346 6 месяцев назад
Hello, I find your file very good but since baseballpress doesn't work anymore it's really a hassle for lineup. Have you found a way to automate this search, whether it's to recover the lineups but also to recover the stats automatically on fangraph.thank you in advance
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
For a temporary fix, I created a full list of players on a new sheet, then set each line up field to be a drop down. I will look up the player line up from differing sites (depending which one will post first), and begin typing in the name, for the drop down to find the player. Unfortunately there are no sites I have found with an easy pull in structure. To get stats or lineups history, you will need to set up scripts via pyhton.
@nap1346
@nap1346 6 месяцев назад
@@wageredontilt1649 Ok unfortunately I don't know python to configure and extract in excel .otherwise i use this site for lineup baseballmonster
@yessirski7868
@yessirski7868 6 месяцев назад
do you have a git repo for this?
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
No, I no longer offer a git for this, I had too many ppl asking for customized code, or passing code off as their own.
@ianharkins2172
@ianharkins2172 6 месяцев назад
I vaguely recall a video of yours dealing with first inning runs/hits, is that still posted? I'm pretty sure I saw it a while ago on your channel but I can't quite remember.
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
You may be talking about the videos I did for Unabated. Those videos can be found below. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-SX2xANBCqsY.html
@ianharkins2172
@ianharkins2172 6 месяцев назад
@@wageredontilt1649 yes that's the video I was thinking of. Thank you!
@tomkmb4120
@tomkmb4120 6 месяцев назад
Enjoyed the video man - Ive been coding some stuff in Python for a couple of years, always on the lookout for new ways to get into working with sports data though - you mentioned this model/example is too primitive to be used for anything - do you teach how to learn the betting side or are you primarily teaching how to use the tech like excel/python to people who already have betting knowledge? Cos I'm somewhat familiar with the tech but not at all with the betting side of things and I guess that's what I'd be interested in knowing more about. Cheers!
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
So, many of my videos that cover the betting side are done in excel videos so you can see the formulas, and the how and why the math/stats work. When I say that the models I show can't be used to win, I mean the model at the state it is in. If you were to add/use differing stats with differing correlations and dependencies, you can beat the books. Any full developed and active betting models are not exposed as to not give away the edge that has been discovered. An example would be the NHL line up builder series I have. That model conceptually can win, however if you do exactly what I do in the video, it will not beat the book as you need more stats and relational data to get an edge on a sports book line.
@JH-db9jc
@JH-db9jc 6 месяцев назад
would love to see the code with actual .csv files. thanks for the video!
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
I will be updating/doing a new video reflecting this.
@Fred-ls6bu
@Fred-ls6bu 6 месяцев назад
hello is it possible to make a video to show how to change the data for this season because I cannot replace them, in the meantime, best regards😅
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
When you say replace them; do you mean dynamic? Or just changing out the data sets as is?
@Fred-ls6bu
@Fred-ls6bu 6 месяцев назад
@@wageredontilt1649 change them automatically and manually if possible a video would be interesting on this subject, best regard
@hollowtv7907
@hollowtv7907 6 месяцев назад
Can you make a video on like budling a sports model, to predict like the final score in excel, and how to use use it to run monte carlo in python? if that makes sense. love ur channel
@hollowtv7907
@hollowtv7907 6 месяцев назад
Also can you explain how you would import API as well?
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
So, you would be able to use player line up data to create a team prediction; or you can use some basic team stats to build predictions (though not totally accurate) There are a few videos on the channel covering these.
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
One would be here Linear Regression and Player Stats in Excel ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-IDlyb7r3bJ4.html
@asfgas
@asfgas 6 месяцев назад
putting in the random data instead of just importing some random stats made it pretty confusing tbh. and seems like more work for you also. maybe just use some random nba data next time.
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
I will be updating/doing a new video reflecting this.
@Fred-ls6bu
@Fred-ls6bu 6 месяцев назад
hello I would like to know where to get them from you, is it possible to automate your algorithm?
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
The vise description contains the link for the sheet. As far as automation, you would need to update the with code either in excel or google sheet scripts
@exploreyourdreamlife
@exploreyourdreamlife 6 месяцев назад
This video has sparked my curiosity. How does the Excel Line Up Model estimate possessions for players? As someone who runs a dream interpretation channel, I'm interested in how you structure and present complex information in your videos for better viewer engagement. I truly appreciate the detailed explanation provided in this video, and I've shown my support by liking and subscribing to your channel.
@wageredontilt1649
@wageredontilt1649 6 месяцев назад
Using a standard possession formula, or data set, you can calculate how many possessions will exist for a player in a minute, then estimate the minutes the player will be on the court. Using that info, you can map out the how many the players on a team will likely have in a given game.