Login Search

NBA Stituational Bet, SDQL

Last Post
#3032

Default

Quote Originally Posted by FortySix View Post
Hey fellas, just a quick question. How do I do a query based on a team's average possessions per game? Is it possible? I know that we can find the average score of a team but can we find their average possession rate as well? I feel as though this would help immensely for totals plays.

Tonight I like the over in 76ers v Nuggets because 76ers totals have all gone under but thats against sides that don't get the same amount of possessions like the Nuggets get. Nuggets average around 99 per game (NBA.com stats helped me with that) and 76ers hit around 98 as well which is above the NBA average (96). The teams that 76ers have played lately play under the average pace apart from the T-Wolves which have the same pace as the Nuggets (98-99) per game so was wanting to see if I could add that into my query.

Thank you in advance fellas.
Some guy on google groups said that every possession ends in either a turnover or a shot attempted, so you just need to add those together to get possessions. I think he was (at the very least) missing something because a possession could also end in freethrows attempted. But that might be it: shots attempted + turnovers + freethrows/2 might be pretty close to number of possessions.
Last edited by pip2; 02-04-15 at 09:19 AM.
#3034

Default

Would like your opinion guys, on situations, where great trend, after filtering becomes a good one.

For example. Trend as is, has 70% hit rate. But after filtering (month or season or line or rest or few of the above) it becomes 55% - 57%. On paper it's still a good trend, but in reality, it's obvious that if there is a spot where trend not at his best, it's current spot. Do you still play it?
#3038

Default

Quote Originally Posted by pip2 View Post
Some guy on google groups said that every possession ends in either a turnover or a shot attempted, so you just need to add those together to get possessions. I think he was (at the very least) missing something because a possession could also end in freethrows attempted. But that might be it: shots attempted + turnovers + freethrows/2 might be pretty close to number of possessions.
You probably want to use the following:

FGA + 0.44*FTA + TO - OReb

Some folks remove ORebs but I tend to believe that a new possession starts after a change of possession. The 0.44 coefficient for FTA takes care of conventional 3-point plays (and 1s) and technicals.
#3039

Default

Quote Originally Posted by hyahya View Post
You probably want to use the following:

FGA + 0.44*FTA + TO - OReb

Some folks remove ORebs but I tend to believe that a new possession starts after a change of possession. The 0.44 coefficient for FTA takes care of conventional 3-point plays (and 1s) and technicals.
I would really like to mess around more with this, but its like I have to try 10 times before I can get it by without a timeout:

(tA(FGA) + tA(TO) + tA(FTA) * .44 - tA(offensive rebounds)) - 9 > (tA(FGA,N=3) + tA(TO,N=3) + tA(FTA,N=3) * .44 - tA(offensive rebounds,N=3))

Team's average possessions for the season drops by 9 or more for the last 3 games: ATS lose and UNDER both at 59 per cent with a sample size of 100. I would love to play with the number 9 to bring the sample size up and then try to work in some numbers that deal with the opponent's possessions as well, but that would probably never get past the timeout barrier...
#3042

Default

Here is what i saw for tonight

DET/IND
none

BRK/TOR

over 212
under 86
toronto 281 234 93

WAS/ATL

atl 80

DEN/BOS

over 87
under 146
denver 257 76 55

CHI/HOU

over 108
chicago 74
houston 195

MIA/MIN

none

LAK/MIL

over 253

OKC/NOLA

under 258 31
okc 26

ORL/SAS

over 279 253 108 62

MEM/UTA

under 149
memphis 120 26
utah 222 208 13

DAL/GST

over 87
under 205
dallas 63
g state 138
#3043

Default

Quote Originally Posted by nash13 View Post
NCAAB:
HF and line <= -10 and pu margin >= 24 and 60 < WP < 80 and o:WP < 50
I am just trying to learn this code. Can you tell me if I got it right? We are fading home favorites who are 10 point or greater favorites, who went at least 24 points over the total in their previous game, who have a win percentage between 60 and 80 percent and are playing an opponent with a win percentage less than 50%. Do I have that correct? Thanks, this is a great thread.
#3044

Default

season >= 2009 and (tA(FGA) + tA(TO) + tA(FTA) * .44 - tA(offensive rebounds)) - 5 > (tA(FGA,N=2) + tA(TO,N=2) + tA(FTA,N=2) * .44 - tA(offensive rebounds,N=2)) and (oA(FGA) + oA(TO) + oA(FTA) * .44 - oA(offensive rebounds)) - 5 > (oA(FGA,N=2) + oA(TO,N=2) + oA(FTA,N=2) * .44 - oA(offensive rebounds,N=2))

Got the above to go through --


SU: 102-102 (0.00, 50.0%)
ATS: 99-99-6 (0.00, 50.0%) avg line: 0.0
O/U: 82-122-0 (-4.26, 40.2%) avg total: 192.9
#3045

Default

Quote Originally Posted by palms View Post
I am just trying to learn this code. Can you tell me if I got it right? We are fading home favorites who are 10 point or greater favorites, who went at least 24 points over the total in their previous game, who have a win percentage between 60 and 80 percent and are playing an opponent with a win percentage less than 50%. Do I have that correct? Thanks, this is a great thread.
absolutely right. hope you catch up to it.