2010 mlb capping & betting #102 - daily key info plus q&a

Search

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
Last 5 years of umps, specific weather (i.e. humidity, temp and wind direction/speed), and game results. I can match it up with o/u and line data.

A lot of the info is found in your stuff pops, but I'd like to incorporate a bit of park factor into it and go back further than 2009.

most of that would be simple copy paste for history. you really dont need pearl vb can handle this simple stuff

key is to finding the sites in the correct format for mining

this is my macro for mining the humidity, and prob the most complex of all the ones i use

Sub Humidity()

Team_col = 128
Hum = 67

Sheets("Sheet2").Visible = True
Last_game = Worksheets("PDWS").Cells(26, 6).End(xlUp).Row
For i = 2 To Last_game

If Worksheets("PDWS").Cells(i, 1) = "Postponed" Then GoTo nextgame:

Sheets("Sheet2").Select
Cells.Select
Selection.ClearContents

Game_day = Format(Worksheets("PDWS").Cells(i, 4), "yyyy/mm/dd")
Game_time = Worksheets("PDWS").Cells(i, 5)

If Right(Game_time, 1) = "p" And Left(Game_time, 2) = 12 Then
Add_hours = 0
ElseIf Right(Game_time, 1) = "a" Then
Add_hours = 0
Else
Add_hours = 12
End If

If Len(Game_time) = 6 Then
Hours = CInt(Left(Game_time, 2)) + Add_hours
Minutes = CDbl(Mid(Game_time, 4, 2) / 60)
Game_time = Hours + Minutes
Else
Hours = CInt(Left(Game_time, 1)) + Add_hours
Minutes = CDbl(Mid(Game_time, 3, 2) / 60)
Game_time = Hours + Minutes
End If

Airport = Worksheets("PDWS").Cells(i, 124)
City = Worksheets("PDWS").Cells(i, 125)
State = Worksheets("PDWS").Cells(i, 126)
Full_State = Worksheets("PDWS").Cells(i, 127)

If Worksheets("PDWS").Cells(i, 9) = "TOR" Then

URL = "http://www.wunderground.com/history/airport/CYTZ/" & Game_day & "/DailyHistory.html?"
GoTo Toronto:

End If

URL = "http://www.wunderground.com/history/airport/" & Airport & "/" & Game_day & "/DailyHistory.html?req_city=" & City & "&req_state=" & State & "&req_statename=" & Full_State

Toronto:

With ActiveSheet.QueryTables.Add(Connection:= _
"URL;" & URL, Destination:=Range("A1"))
.Name = "weather"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
skipline:

Cells.Select
Selection.Find(What:="Hourly Observations", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
start_row = ActiveCell.Row + 3

Selection.Find(What:="Show full METARS METAR FAQ Comma Delimited File", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
End_row = ActiveCell.Row - 1

Selection.Find(What:="Humidity:", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Humidity_col = ActiveCell.Column

Selection.Find(What:="Time (", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Time_col = ActiveCell.Column
Time_zone = ActiveCell.Value

If InStr(Time_zone, "EDT") > 0 Then Game_time = Game_time + 3
If InStr(Time_zone, "MDT") > 0 Then Game_time = Game_time + 2
If InStr(Time_zone, "CDT") > 0 Then Game_time = Game_time + 2

Begin_row = start_row
'Begin_row = 80
For j = Begin_row To End_row
temp1 = Trim(Worksheets("Sheet2").Cells(j, Time_col)) * 24
temp2 = Game_time - temp1
If Game_time - temp1 < 0 And Game_time - temp1 > -1 Then

If Worksheets("PDWS").Cells(i, 10) = "I" Then

Worksheets("PDWS").Cells(i, Hum) = 50
GoTo nextgame:

Else

Worksheets("PDWS").Cells(i, Hum) = Worksheets("Sheet2").Cells(j, Humidity_col) * 100
GoTo nextgame:

End If
End If
Next j
nextgame:
' i = i + 3
Next i

Sheets("Sheet2").Visible = False
Sheets("PDWS").Select
End Sub
Sub Projected_Umps()

Proj_ump = 71
Last_game = Worksheets("PDWS").Cells(26, 6).End(xlUp).Row

Sheets("Sheet2").Select
Cells.Select
Selection.ClearContents

With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.statfox.com/mlb/umpiremain.asp", Destination:=Range("$A$1"))
.Name = "weather"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With

Selection.Find(What:="Umpire", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Begin_row = ActiveCell.Row + 3
last_row = Range("L10000").End(xlUp).Row
start_row = Begin_row
For i = 2 To Last_game

Vis_team2 = Worksheets("PDWS").Cells(i, 132)
For j = start_row To last_row
Vis_team1 = Trim(Left(Worksheets("Sheet2").Cells(j, 1), 3))

If Vis_team1 = Vis_team2 Then

Worksheets("PDWS").Cells(i, Proj_ump) = Worksheets("Sheet2").Cells(j, 3)
start_row = j
GoTo nextline:
End If
Next j
nextline:
Next i
Sheets("PDWS").Select
End Sub
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
Is it me or do the prices this year on fav's seem higher than in past years? Something I've noticed since the start of bases this year. Seems like alot more -180 + higher fav's than in past years.

i always think they are higher than before. guess many feel the same way, could be why OL fav get bet down from the open at the beginning of the seasons. you will be seing the -380 plus on the nyy later this year on the key pitchers if they are doing well
 

New member
Joined
Mar 22, 2010
Messages
53
Tokens
thanks pops. i was going to try and figure out a way to mine mlb.com's XML table that has the specific info on weather as well, but I see how VB could be used too.
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
thanks pops. i was going to try and figure out a way to mine mlb.com's XML table that has the specific info on weather as well, but I see how VB could be used too.

i use mlb as well for much of my data. that's what you need are sites that use xml as you can get data directly w/o ever going to the site

enjoy
 

New member
Joined
Mar 22, 2010
Messages
53
Tokens
i use mlb as well for much of my data. that's what you need are sites that use xml as you can get data directly w/o ever going to the site

enjoy

Yep, hence my project. I'll take a look at VB. Would be nice to have a script to pull everything since 2006 that's needed, then have an on-going (like you have) to pull daily stuff.
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
Yep, hence my project. I'll take a look at VB. Would be nice to have a script to pull everything since 2006 that's needed, then have an on-going (like you have) to pull daily stuff.

you will have nothing but problems because the format is always changing. going back that many years just take a gun to your head. you have my 2008 and 2009 masters plus this years is more than enough (even way to much)

just change the older formats to match the new and have at it
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
My bad pops. They're just different types of FAs.

Class A is ranked in the top 20 percent of players at his position. A team that signs a Type A player gives its top draft pick to the club that the player is leaving and they also receive a supplemental pick in the "sandwich" round between the first and second rounds.

Class B is ranked below the top 20 percent but in the top 40 percent of players at his position. A team that loses a Type B player receives a supplemental pick, but the signing team does not lose a pick.

2009 Results for Home Starting Pitchers

Glaving No starts
duchscgerer no starts

<table style="border-collapse: collapse; width: 273pt;" width="363" border="0" cellpadding="0" cellspacing="0"><col style="width: 101pt;" width="134"> <col style="width: 88pt;" width="117"> <col style="width: 23pt;" width="31"> <col style="width: 61pt;" width="81"> <tbody><tr style="height: 15pt;" height="20"> <td style="height: 15pt; width: 101pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" width="134" height="20">Month</td> <td class="xl93" style="width: 88pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" width="117">(All)</td> <td class="xl93" style="width: 23pt;" width="31">
</td> <td class="xl93" style="width: 61pt;" width="81">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Week #</td> <td class="xl93" style="background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl93">
</td> <td class="xl93">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Day</td> <td class="xl93" style="background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl93">
</td> <td class="xl93">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">League</td> <td class="xl93" style="background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl93">
</td> <td class="xl93">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">D or N</td> <td class="xl93" style="border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl93">
</td> <td class="xl93">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">
</td> <td class="xl93">
</td> <td class="xl93">
</td> <td class="xl93">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Count of Home W/L</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);">Column Labels</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);">
</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Row Labels</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">W</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">L</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">Grand Total</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl94" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">FA</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">60</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">67</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">127</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">CABRERA, D</td> <td class="xl93">
</td> <td class="xl93">4</td> <td class="xl93">4</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">COLON, B</td> <td class="xl93">3</td> <td class="xl93">4</td> <td class="xl93">7</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">CONTRERAS, J</td> <td class="xl93">6</td> <td class="xl93">6</td> <td class="xl93">12</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">EATON, A</td> <td class="xl93">2</td> <td class="xl93">2</td> <td class="xl93">4</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">HAMPTON, M</td> <td class="xl93">4</td> <td class="xl93">7</td> <td class="xl93">11</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">HERNANDEZ, L</td> <td class="xl93">4</td> <td class="xl93">9</td> <td class="xl93">13</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">MYERS, B</td> <td class="xl93">
</td> <td class="xl93">5</td> <td class="xl93">5</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">PENNY, B</td> <td class="xl93">11</td> <td class="xl93">6</td> <td class="xl93">17</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">PEREZ, O</td> <td class="xl93">5</td> <td class="xl93">2</td> <td class="xl93">7</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">PONSON, S</td> <td class="xl93">1</td> <td class="xl93">5</td> <td class="xl93">6</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">SCHMIDT, J</td> <td class="xl93">1</td> <td class="xl93">2</td> <td class="xl93">3</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">SMOLTZ, J</td> <td class="xl93">3</td> <td class="xl93">3</td> <td class="xl93">6</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">WASHBURN, J</td> <td class="xl93">11</td> <td class="xl93">6</td> <td class="xl93">17</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">WELLEMEYER, T</td> <td class="xl93">9</td> <td class="xl93">6</td> <td class="xl93">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl94" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">FAA</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">22</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">12</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">34</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">LACKEY, J</td> <td class="xl93">8</td> <td class="xl93">7</td> <td class="xl93">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">WOLF, R</td> <td class="xl93">14</td> <td class="xl93">5</td> <td class="xl93">19</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl94" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">FAB</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">69</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">59</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">128</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">BEDARD, E</td> <td class="xl93">3</td> <td class="xl93">5</td> <td class="xl93">8</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">DAVIS, D</td> <td class="xl93">7</td> <td class="xl93">9</td> <td class="xl93">16</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">GARLAND, J</td> <td class="xl93">9</td> <td class="xl93">7</td> <td class="xl93">16</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">HARDEN, R</td> <td class="xl93">7</td> <td class="xl93">8</td> <td class="xl93">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">JOHNSON, R</td> <td class="xl93">6</td> <td class="xl93">3</td> <td class="xl93">9</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">MARQUIS, J</td> <td class="xl93">10</td> <td class="xl93">6</td> <td class="xl93">16</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">PAVANO, C</td> <td class="xl93">8</td> <td class="xl93">7</td> <td class="xl93">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">PETTITTE, A</td> <td class="xl93">12</td> <td class="xl93">6</td> <td class="xl93">18</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">PINEIRO, J</td> <td class="xl93">7</td> <td class="xl93">8</td> <td class="xl93">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl94" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">OY</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">23</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">12</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">35</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">BECKETT, J</td> <td class="xl93">13</td> <td class="xl93">3</td> <td class="xl93">16</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">HUDSON, T</td> <td class="xl93">
</td> <td class="xl93">4</td> <td class="xl93">4</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">MILLWOOD, K</td> <td class="xl93">10</td> <td class="xl93">5</td> <td class="xl93">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl94" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">OYB</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">17</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">16</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">33</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">LOOPER, B</td> <td class="xl93">9</td> <td class="xl93">9</td> <td class="xl93">18</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl95" style="height: 15pt;" height="20">PADILLA, V</td> <td class="xl93">8</td> <td class="xl93">7</td> <td class="xl93">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl94" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Grand Total</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);">191</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);">166</td> <td class="xl93" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);">357</td> </tr> </tbody></table>
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
visiting FA and OY pitchers

L is win on when looking at visitors as everything is based on home team results

<table style="border-collapse: collapse; width: 288pt;" width="383" border="0" cellpadding="0" cellspacing="0"><col style="width: 101pt;" width="134"> <col style="width: 103pt;" width="137"> <col style="width: 23pt;" width="31"> <col style="width: 61pt;" width="81"> <tbody><tr style="height: 15pt;" height="20"> <td style="height: 15pt; width: 101pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" width="134" height="20">Month</td> <td class="xl95" style="width: 103pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" width="137">(All)</td> <td class="xl95" style="width: 23pt;" width="31">
</td> <td class="xl95" style="width: 61pt;" width="81">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Week #</td> <td class="xl95" style="background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl95">
</td> <td class="xl95">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Day</td> <td class="xl95" style="background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl95">
</td> <td class="xl95">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">League</td> <td class="xl95" style="background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl95">
</td> <td class="xl95">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">D or N</td> <td class="xl95" style="border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">(All)</td> <td class="xl95">
</td> <td class="xl95">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">
</td> <td class="xl95">
</td> <td class="xl95">
</td> <td class="xl95">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Count of Home W/L</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);">Column Labels</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);">
</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; background: none repeat scroll 0% 0% rgb(219, 229, 241);">
</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Row Labels</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">L</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">W</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215); background: none repeat scroll 0% 0% rgb(219, 229, 241);">Grand Total</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl96" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">FA</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">38</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">76</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">114</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">BACKE, B</td> <td class="xl95">1</td> <td class="xl95">
</td> <td class="xl95">1</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">CABRERA, D</td> <td class="xl95">
</td> <td class="xl95">5</td> <td class="xl95">5</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">COLON, B</td> <td class="xl95">1</td> <td class="xl95">5</td> <td class="xl95">6</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">CONTRERAS, J</td> <td class="xl95">3</td> <td class="xl95">8</td> <td class="xl95">11</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">EATON, A</td> <td class="xl95">1</td> <td class="xl95">3</td> <td class="xl95">4</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">ESCOBAR, K</td> <td class="xl95">
</td> <td class="xl95">1</td> <td class="xl95">1</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">HAMPTON, M</td> <td class="xl95">3</td> <td class="xl95">7</td> <td class="xl95">10</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">HERNANDEZ, L</td> <td class="xl95">7</td> <td class="xl95">11</td> <td class="xl95">18</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">MYERS, B</td> <td class="xl95">5</td> <td class="xl95">
</td> <td class="xl95">5</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">PENNY, B</td> <td class="xl95">4</td> <td class="xl95">9</td> <td class="xl95">13</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">PEREZ, O</td> <td class="xl95">1</td> <td class="xl95">6</td> <td class="xl95">7</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">PONSON, S</td> <td class="xl95">
</td> <td class="xl95">3</td> <td class="xl95">3</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">SCHMIDT, J</td> <td class="xl95">1</td> <td class="xl95">
</td> <td class="xl95">1</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">SMOLTZ, J</td> <td class="xl95">3</td> <td class="xl95">6</td> <td class="xl95">9</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">WASHBURN, J</td> <td class="xl95">4</td> <td class="xl95">7</td> <td class="xl95">11</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">WELLEMEYER, T</td> <td class="xl95">4</td> <td class="xl95">5</td> <td class="xl95">9</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl96" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">FAA</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">16</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">13</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">29</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">LACKEY, J</td> <td class="xl95">8</td> <td class="xl95">7</td> <td class="xl95">15</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">WOLF, R</td> <td class="xl95">8</td> <td class="xl95">6</td> <td class="xl95">14</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl96" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">FAB</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">69</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">64</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">133</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">BEDARD, E</td> <td class="xl95">5</td> <td class="xl95">2</td> <td class="xl95">7</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">DAVIS, D</td> <td class="xl95">6</td> <td class="xl95">12</td> <td class="xl95">18</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">GARLAND, J</td> <td class="xl95">5</td> <td class="xl95">12</td> <td class="xl95">17</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">HARDEN, R</td> <td class="xl95">6</td> <td class="xl95">5</td> <td class="xl95">11</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">JOHNSON, R</td> <td class="xl95">4</td> <td class="xl95">4</td> <td class="xl95">8</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">MARQUIS, J</td> <td class="xl95">9</td> <td class="xl95">8</td> <td class="xl95">17</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">PAVANO, C</td> <td class="xl95">11</td> <td class="xl95">8</td> <td class="xl95">19</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">PETTITTE, A</td> <td class="xl95">13</td> <td class="xl95">6</td> <td class="xl95">19</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">PINEIRO, J</td> <td class="xl95">10</td> <td class="xl95">7</td> <td class="xl95">17</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl96" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">OY</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">18</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">18</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">36</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">BECKETT, J</td> <td class="xl95">9</td> <td class="xl95">8</td> <td class="xl95">17</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">HUDSON, T</td> <td class="xl95">3</td> <td class="xl95">
</td> <td class="xl95">3</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">MILLWOOD, K</td> <td class="xl95">6</td> <td class="xl95">10</td> <td class="xl95">16</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl96" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);" height="20">OYB</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">22</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">8</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: medium medium 0.5pt; border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color rgb(149, 179, 215);">30</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">LOOPER, B</td> <td class="xl95">11</td> <td class="xl95">5</td> <td class="xl95">16</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl97" style="height: 15pt;" height="20">PADILLA, V</td> <td class="xl95">11</td> <td class="xl95">3</td> <td class="xl95">14</td> </tr> <tr style="height: 15pt;" height="20"> <td class="xl96" style="height: 15pt; font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);" height="20">Grand Total</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);">163</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);">179</td> <td class="xl95" style="font-size: 11pt; color: black; font-weight: 700; text-decoration: none; font-family: Calibri; border-width: 0.5pt medium medium; border-style: solid none none; border-color: rgb(149, 179, 215) -moz-use-text-color -moz-use-text-color; background: none repeat scroll 0% 0% rgb(219, 229, 241);">342</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">
</td> <td>
</td> <td>
</td> <td>
</td> </tr> </tbody></table>
 

New member
Joined
Mar 22, 2010
Messages
53
Tokens
"E" siting tomorrow in PHI-SFG...not sure I can pull the trigger on u9.5 w/ Moyer-Wellemeyer. Yikes...
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
Tuesday April 27th

today's pdws below

updated master and sharing data and info updates also attached

no o/u ol for cubs. strange

one waldo for today 4 sure and could be more as a few more 1st games of a series today

quick check of old business


 
Last edited:

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
"E" siting tomorrow in PHI-SFG...not sure I can pull the trigger on u9.5 w/ Moyer-Wellemeyer. Yikes...

i had no prob with it. these are they type of pitchers that it helps the most. as long as i can get the number at the OL or better i'm in
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
there will be a change on the nym game vs what's in the pdws

will advise
 

New member
Joined
Apr 18, 2010
Messages
976
Tokens
i had no prob with it. these are they type of pitchers that it helps the most. as long as i can get the number at the OL or better i'm in

I know E is a Waldo but looking at his record the last couple of years he's about 50% on O and U just curious
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
Updated pdws with cubs numbers and mets pitching changes below


 
Last edited:

Member
Joined
Sep 29, 2005
Messages
4,675
Tokens
These prices on fav's are getting crazy
Mil -250 with wolf? wtf, have to take Pitt at +230 based on value alone.
 

Member
Joined
Sep 29, 2005
Messages
4,675
Tokens
Looks like the market doesn't think much about e in sf. Opening number still the same as current number. Usually get .5 run adjustment with him
 

Member
Joined
Oct 12, 2004
Messages
3,761
Tokens
Before betting the SF game may want to check the weather, suppose to be windy and rain, blowing out
 

Rx. Senior
Joined
Nov 21, 2002
Messages
41,006
Tokens
Before betting the SF game may want to check the weather, suppose to be windy and rain, blowing out

nite games there are cold and damp make for heavy balls in the bay

night now 72% pm the over and no line move to the upside. what does that tell u
 

CTP

New member
Joined
Dec 7, 2005
Messages
2,201
Tokens
Could you explain the categories in col CF on the master? I can not make the connection.
 

Forum statistics

Threads
1,118,027
Messages
13,550,653
Members
100,559
Latest member
walterjohnson3202
The RX is the sports betting industry's leading information portal for bonuses, picks, and sportsbook reviews. Find the best deals offered by a sportsbook in your state and browse our free picks section.FacebookTwitterInstagramContact Usforum@therx.com