NCAA College Football DFS Projections (2024)

It’s Game Time

LoginCancel

  • Register
  • Reset Password
  • Sign with your Google Account
  • Login with Facebook

Don't have an account? Create one now

'; for (var j = 0; j < v[i].Columns.length; j++) { var rankCls = 'matchupRank' + md.Ranks[j]; html += '

' + v[i].Columns[j] + '

' + md.Values[j] + '

'; } html += '

'; } } html += '

'; return $(html); }; vm.getMatchupDataItem = function(matchupData, playerId, salaryId, mID) { var m = matchupData; for (var j = 0; j < m.length; j++) { if (m[j].Id === mID) { for (var i = 0; i < m[j].PlayerMatchups.length; i++) { var sid = m[j].PlayerMatchups[i].SID; if (sid > 0) { if (sid === salaryId) { return m[j].PlayerMatchups[i]; } } else { if (m[j].PlayerMatchups[i].PlayerId === playerId) { return m[j].PlayerMatchups[i]; } } } break; } } return []; }; vm.updateIfDiff = function(item, prop, val){ if(item[prop] == null || item[prop] === undefined || item[prop] != val){ item[prop] = val; } }; vm.refreshDataOnGamesList = function(){ for(var i=0;i

{ webService.getPeriodInfo(function (data) { vm.updateData(data); }); }, (30000)); var promoCode = localStorage.getItem('promoCode'); if (LineStar.IsSignedIn && promoCode != null && promoCode.length > 2) { $.ajax({ url: "/DesktopModules/DailyFantasyApi/API/Affiliate/SavePromoCodeForUser", type: "GET", data: { promoCode: promoCode, }, dataType: "json", success: function (result) { localStorage.setItem('promoCode', ''); }, error: function (xhr, ajaxOptions, thrownError) { } }); } });angular.module("mainLayoutApp.Filters", []) .filter("colorize", function () { return function (value) { if (value == 0) return "sbad"; else if (value == 1) return "bad"; else if (value == 3) return "good"; else if (value == 4) return "sgood"; else return "none"; } });var fscWebService = angular.module("mainLayoutApp.Services", []) .service("webService", ['$http', function ($http) { this.getPeriodInfo = function (dataCallback) { return $http({ url: "/DesktopModules/DailyFantasyApi/API/Fantasy/GetPeriodInformation", method: "GET", params: { "site": fscInfo.site, "sport": fscInfo.sport, "periodId": fscInfo.period, "getLineupCnt": (getPeriodQueryCnt++ == 0) ? "true" : "false", } }).success(function (data) { dataCallback(data); }) .error(function (error) { console.log(error); }); }; this.savePlayerAdjustmentsViaPopup = function (callback, modsToSave) { return $http({ url: "/DesktopModules/DailyFantasyApi/API/Fantasy/UpdateCustomProjectionV3", method: "POST", headers: { 'Content-Type': "application/json" }, data: { "sport": LineStar.Sport, "mods": modsToSave, }, }).then(function onSuccess(response) { callback(response.status == 200 ? true : false, response.data); }).catch(function onError(response) { callback(false, (response.data != null) ? response.data : "An error has occured"); }); }; }]);function intToHex(v){ v = v.toString(16); while (v.length < 6) { v = "0" + v; } return '#' + v; } function updateArray(nw, cur){ var updates = 0; for(var k in nw){ var g = nw[k]; var eg = cur.find(gg=>gg.Id == g.Id); if(eg != null){ updates += updateObject(eg, g); } } return updates; } function updateObject(cur, nw){ var updates = 0; Object.keys(cur).forEach(function(key,index) { if(key == "$$hashKey") {return;} if(Array.isArray(cur[key])){ //updateArray(cur[key], nw[key]); }else{ if(cur[key] != nw[key] && nw[key] !== undefined){ cur[key] = nw[key]; updates++; } } }); return updates; } function setSaved(n, o){ var f = fscInfo; localStorage.setItem(n+f.site+f.sport+f.period,o); } function getSaved(n){ var f = fscInfo; return localStorage.getItem(n+f.site+f.sport+f.period); } function getSavedInt(n){ var f = getSaved(n); return parseInt(f) || 0; } function intToHex(v){ v = v.toString(16); while (v.length < 6) { v = "0" + v; } return '#' + v; } function getHumanRankedNum(num) { if(typeof(num) == "undefined") return; if(num % 100 >= 11 && num % 100 <= 13) return num + "th"; switch(num % 10) { case 1: return num + "st"; case 2: return num + "nd"; case 3: return num + "rd"; } return num + "th"; } function prettyDate(dateOrStr){ var date; if(typeof dateOrStr === 'string' || dateOrStr instanceof String){ if(!dateOrStr.endsWith('Z')){ dateOrStr += 'Z'; } date = new Date(dateOrStr); }else{ date = dateOrStr; } var delta = Math.round((+new Date - date) / 1000); var minute = 60, hour = minute * 60, day = hour * 24, week = day * 7; var hr = ''; if (delta < 0) { delta = delta * -1; if (delta < 30) { hr = 'soon'; } else if (delta < minute) { hr = 'in ' + delta + ' seconds'; } else if (delta < 2 * minute) { hr = 'in a minute' } else if (delta < (hour + (minute*59))) { hr = 'in ' + Math.floor(delta / minute) + ' mins'; } else if (Math.floor(delta / hour) == 1) { hr = 'in an hour' } else if (delta < day) { hr = 'in ' + Math.floor(delta / hour) + ' hours'; } else{ hr = 'in ' + Math.floor(delta / day) + ' days'; } } else { if (delta < 30) { hr = 'just now'; } else if (delta < minute) { hr = delta + ' seconds ago'; } else if (delta < 2 * minute) { hr = 'a minute ago' } else if (delta < hour) { hr = Math.floor(delta / minute) + ' mins ago'; } else if (Math.floor(delta / hour) == 1) { hr = 'an hour ago' } else if (delta < day) { hr = Math.floor(delta / hour) + ' hours ago'; } else if (delta < day * 2) { hr = 'yesterday'; } else { hr = Math.floor(delta / day) + ' days ago'; } } return hr; } function findBestSlate(slates){ var now = new Date(); var svId = getSavedInt('selslate'); var opts = new Array(5); if(slates != null){ if(slates.length > 0){ opts[4] = slates[0]; } for(var k in slates){ var slate = slates[k]; if(opts[3] == null && slate.Mode == 0){ opts[3] = slate; } if(slate.Id == svId){ opts[0] = slate; } if(slate.SlateName != undefined && slate.SlateName.indexOf('Main') >= 0){ opts[1] = slate; } var d = new Date(slate.SlateDateUtc); if((now.getTime() < d.getTime()) && (opts[2] == null || opts[2].Games < slate.Games)){ opts[2] = slate; } } } for(var i=0; i 0){ tickDate = new Date(utc); } else{ var ticks = parseInt(utc); var ticksToMicrotime = ticks / 10000; var epochMicrotimeDiff = 2208988800000; tickDate = new Date(ticksToMicrotime - epochMicrotimeDiff); } element.text($.format.date(tickDate, "E h:mma")); }); } var isMenuFull = 1; var isMobileDevice = 0; var fLastOpenedEle = null;if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent) || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))) { isMobileDevice = 1; isMenuFull = 0;}else{ isMenuFull = localStorage.getItem('isMenuFull'); if (isMenuFull === null || isMenuFull === undefined) { isMenuFull = isMobileDevice ? 0 : 1; } else{ isMenuFull = parseInt(isMenuFull); }}function updateMenuClass(){ var menu = $('.pageSelectorArea'); var ca = $('.contentArea'); var sld = $('.customSliderLeft'); if(isMenuFull==1){ menu.removeClass('menuHidden menuMinimized'); ca.removeClass('contentAreaNoMenu contentAreaMinMenu'); sld.removeClass('customSliderLeftLeft'); }else{ menu.addClass(isMobileDevice ? 'menuHidden' : 'menuMinimized'); ca.addClass(isMobileDevice ? 'contentAreaNoMenu' : 'contentAreaMinMenu'); sld.addClass('customSliderLeftLeft'); } }$(document).ready(function () { $(document).on("click", ".playername", function (e) { if($(e.target).hasClass('playername')){ e.stopPropagation(); e.preventDefault(); fscInfo.vm.queryPlayerPop($(this)); } }); $(document).on("click", ".clickToOpen", function (e) { var tgt = $(e.target); var subMenuClicked = (tgt.closest('.closeOnClick').length>0); if(!tgt.hasClass('clickToOpen')){ tgt = tgt.closest('.clickToOpen'); } var subMenu = tgt.find('.closeOnClick'); var vis = subMenu.is(':visible'); $('.closeOnClick').hide(); if(!vis){ fLastOpenedEle = subMenu; subMenu.show(); }else{ fLastOpenedEle = null; } if(!subMenuClicked){ e.stopPropagation(); e.preventDefault(); } }); $(document).on('click', function(e) { if(fLastOpenedEle != null){ var tgt = $(e.target); if(!tgt.hasClass('closeOnClick') || tgt.closest('.closeOnClick').length == 0){ fLastOpenedEle.hide(); fLastOpenedEle = null; } } }); /*$('.mobile__menu').on('click', function(e) { e.stopPropagation(); e.preventDefault(); isMenuFull = (isMenuFull > 0) ? 0 : 1; localStorage.setItem('isMenuFull', isMenuFull); updateMenuClass(); });*/ $('.fscPopupClose').on('click', function(e) { e.stopPropagation(); e.preventDefault(); $('.fscpopup').hide(); }); $('.fscpopup').on('click', function(e) { if($(e.target).hasClass('fscpopup')){ e.stopPropagation(); e.preventDefault(); $('.fscpopup').hide(); } }); //updateMenuClass(); $("body").tooltip({ selector: '[data-toggle=tooltip]' }); });

MLB CFL CSGO PGA LOL UFC NAS NCAAF WNBA

NCAA College Football DFS Projections (19)

Fanduel

Yahoo Not Supported

{{mlc.data.Info.Period.Name}}

{{mlc.selectedSlate.SlateName}}

{{mlc.selectedSlate.Games}} Games | {{mlc.toTimeStr(mlc.selectedSlate.SlateDateUtc)}} | {{mlc.getSlateStatusStr(mlc.selectedSlate)}}

NCAA College Football DFS Projections (21) {{mlc.fscInfo.sportName}} Chat LIVE {{mlc.data.Info.ChatCnt}}

View {{mlc.selectedSlate.Games}} Games

NCAA College Football DFS Projections (22) {{game.AwayTeamAbrev}} {{game.AwayTeamScore}} {{game.AwayTeamRecord}} O/U {{game.VegasTotals}} {{game.VegasMoneyLineAway}}

NCAA College Football DFS Projections (23) {{game.HomeTeamAbrev}} {{game.HomeTeamScore}} {{game.HomeTeamRecord}} {{game.VegasSpreadHome}}

{{game.GameFriendlyTime}}

{{game.StatusText}}

{{game.PostponeChance}}% {{fscInfo.Sport==3? "PPD" : ""}}

{{game.PostponeChance}}% {{fscInfo.Sport==3? "PPD" : ""}}

Projections Updates pOwn% Sal Comp Sal Change Perfect LU Live Scoring PropsAI NEW Matchups Starting LU Articles

NCAA College Football DFS Projections (35) {{mlc.fscInfo.sportName}} Chat LIVE {{mlc.data.Info.ChatCnt}}

NCAA College Football DFS Projections (36) Go LineStar Premium - Get unlimited access to the top-rated DFS analytics platform - one low price Go Premium Learn More

←Return to Projections

Last Updated {{m.lastUpdated}}

    Stack Size 2 3 4 5
    Gap Size 0 1 2
    Max WRs 0 1 2 3 4
    Max TEs 0 1
    Max RBs 0 1
    Stack Must Fit In Builder ALL MUST FIT

Compound Filters Teams {{filter.name}}X

Stacking Options Settings

{{cat.Name}}
Team Opp Stacks({{stk.stacks.length}}) {{sorter.Name}}
+Add Stack NCAA College Football DFS Projections (37){{teamStk.team.Name}} {{teamStk.oppTeam.Name}}

NCAA College Football DFS Projections (38)

{{ply.LU}}. {{ply.shortName}}, {{ply.POS}}

${{ply.SAL}} | {{ply.PP}} proj

{{ele.Value}}

LineStar Premium

Get unlimited access to the top-rated DFS & Sports Betting analytics platform - one low price.

Want to try it out first? You can view the past week for free to try our tools! No signup required, just change date top left.

GET STARTED

What's included with LineStar Premium?

Loading Stacks...

X

Stack Finder Options

{{opt.Name}}

{{opt.Val?"Enabled":"Disabled"}}

{{opt.Val}}

{{opt.ValMin}}-{{opt.ValMax}}

{{opt.Desc}}

{{opt.Name}}

Last Updated {{m.lastUpdated}}

My Lineups{{mlc.data.LineupCnt}}

Optimizer Filters & Sorting View Stacks My Lineups{{mlc.data.LineupCnt}}

{{filter.name}}X

    ALL {{pf.FilterText}}

Compound Filters Teams Salary {{filter.name}}X

{{m.matchupDataSorter.Name}}

{{pmd.Name}}

{{m.matchupDataSorter.Columns[m.matchupDataSorterColIdx]}}

{{str}}

{{m.selectedSorter.Name}}

{{sorter.Name}} {{sorter.Desc}}

View Stacks Settings

Important salary data has changed, tap here to refresh.

Showing {{m.salaryListForSelSlate.length}} of {{m.count_filtered+m.salaryListForSelSlate.length}} salaries that match.
Tap here to clear all filters.

{{p.SS==1?'Live':p.SS==2?'Delay':p.SS==3?'PPD':p.SS==4?'Final':''}} {{p.PS}} ({{m.getLegacyPlayerGameStatusText(p)}})

{{p.LoveCount}} {{p.HateCount}}

NCAA College Football DFS Projections (39)

({{p.OE}}) {{p.Name}} {{p.Name}} {{p.MessageCount}} {{p.PTEAM}} {{p.POS}}

{{p.VersusStr}} ({{p.OppRankStr}}) ({{p.oppPitcher.OE}}) {{p.oppPitcher.Name}}, {{p.oppPitcher.PTEAM}} ({{p.OppRankStr}}) {{p.ShortGameTime}}

{{p.SalStr}}

{{p.ValueX}} value

Vegas Odds: {{p.vegasTotals}} Total {{m.sportsPointsName}} | {{p.VegasImplied}} Implied {{m.sportsPointsName}}

Ownership: {{p.SlateOwnership}}% Proj

proj

+ -

Loading...

Loading Projections...

Players ({{m.count_total}}) Players ({{m.count_total}} of {{m.salaryListForSelSlateALL.length}}) Liked ({{m.count_liked}}) Excluded ({{m.count_removed}}) Proj Adjusted ({{m.count_projAdj}}) Status Chat Tier Value Salary Scored Projection Consensus Time Opponent vs Pos {{m.static.sportSpecificColName0}} {{m.static.sportSpecificColName1}} Consistent Floor Ceiling AlertScore Avg FP {{m.static.impColHeaderName}} Matchup Data SIC Score pOwn actOwn Leverage Safety Admin
{{p.POS}}{{m.showDepth?p.depthOrder:""}} NCAA College Football DFS Projections (40) NCAA College Football DFS Projections (41) {{p.Name}} {{p.Name}} ({{p.OE}}) • {{p.PTEAM}} {{p.MessageCount}} Tier{{p.Tier}} {{p.ValueX}} {{p.SalStr}} {{p.PS}}

+ -

{{p.AggProj}} {{p.ShortGameTime}} {{p.VersusStr}} {{p.OppRankStr}} {{p.sportSpecificCol0}} {{p.sportSpecificCol1}} {{p.ConfStr}}% {{p.FloorStr}} {{p.CeilStr}} {{p.AlertScore}} {{p.PPG}} {{p.VegasImplied}} {{p.SIC}} {{p.SlateOwnership}}% {{p.ActSlateOwnership}}% {{p.Leverage}} {{p.Safety}}

+ -

Loading...

Loading Projections...

No salaries available for this site/sport. Check back soon!

LineStar Premium

Get unlimited access to the top-rated DFS & Sports Betting analytics platform - one low price.

Want to try it out first? You can view the past week for free to try our tools! No signup required, just change date top left.

GET STARTED

What's included with LineStar Premium?

←Return to Projections

Create Empty Set Upload Lineups CSV From {{m.siteName}}

Optimizing Lineups...

You don't have any lineup sets yet. Tap the 'Optimizer' button to the right and get started optimizing lineups!

{{m.getGenerateModel(set.SetInfo.Model).ShortName}} • {{m.getSlate(set.SetInfo.SlateId).SlateName}} • {{set.SetInfo.LineupCount}} Lineups • {{mlc.getPrettyDate(set.SetInfo.CreatedUtc)}}

Swaptimize Set Sort Lineups

Projected Scored Owned

Export Set Merge Set Delete Set

Team-Stack Exposure

Team 2 3 4 5+ TOTAL
NCAA College Football DFS Projections (42) {{te.Team.Name}} {{te.TwoStack}} {{te.ThreeStack}} {{te.FourStack}} {{te.FiveStack}} {{te.Cnt}}

Player Exposures

NCAA College Football DFS Projections (43) {{exp.Salary.Name}} {{exp.LineupCnt}} {{exp.Pct}}%

Move to Different Set Send to Lineup Builder Export Lineup Delete Lineups Before Delete Lineups After

{{li.req.PositionName}} NCAA College Football DFS Projections (44) NCAA College Football DFS Projections (45) {{li.Salary.Name}} NCAA College Football DFS Projections (46) NCAA College Football DFS Projections (47) PP{{li.Salary.PPL}} {{li.Salary.POS}}{{li.Salary.depthOrder}} {{li.Salary.PTEAM}} {{li.Salary.OTEAM_VS}} {{(li.Salary!=null)?li.Salary.SlateOwnership:0}}% ${{m.getSalaryFromSlot(li)}} {{m.getPointsProjectedFromSlot(li)}} {{li.Salary.PS*li.req.PointMultiplier}}

Replace player in this lineup Replace player in all lineups in this set

NCAA College Football DFS Projections (48) {{stk.TeamName}} {{stk.cnt}}

Stacks

{{lineup.Owned.toFixed(0)}}%

pOwn

${{lineup.Salary}}

Salary

{{lineup.PP.toFixed(2)}}

Proj

{{lineup.PS.toFixed(2)}}

Scored

Loading Lineups...

OPTIMIZER

NCAA College Football DFS Projections (49) {{slot.salary.shortName}} {{slot.salary.shortName}} X

{{slot.req.PositionName}}

NCAA College Football DFS Projections (50) {{ps.shortName}} X

Lineup Optimizer ({{m.selectedSlate.SlateName}})

{{slot.req.Data.PositionNameDisp}} NCAA College Football DFS Projections (51) {{slot.salary.Name}} @ vs NCAA College Football DFS Projections (52) {{slot.pOwn}} {{slot.SalaryStr}} {{slot.Proj}} X Pick a player or let the optimizer choose

Clear Lineup ${{m.lineupBuilder.SalUsed}} Used ${{m.lineupBuilder.SalLeft}} Left ${{m.lineupBuilder.SalLeftPerSlot}} Per Slot {{m.lineupBuilder.TotalProjected}} Projected

{{m.getLineGenSettingsChanged()}} Settings {{m.generateModel.Name}} NCAA College Football DFS Projections (53) Model {{m.incTeamsStr}} Teams Active {{m.count_liked}} Liked Pool {{m.stackOptionsStr}} Team Stacks

OPTIMIZE {{m.getLineGenSetting(102)}} LINEUPS SAVE LINEUP

X

Stack Options

Positions allowed in stack

    {{pos.PositionName}}

{{opt.Name}} {{opt.Desc}} {{opt.Val1}} max

X

Move Lineup to New Set

Set Name Model Slate # Lineups Created
{{set.SetInfo.SetName}} {{m.getGenerateModel(set.SetInfo.Model).ShortName}} {{m.getSlate(set.SetInfo.SlateId).SlateName}} {{set.SetInfo.LineupCount}} Lineups {{mlc.getPrettyDate(set.SetInfo.CreatedUtc)}}
{{set.SetInfo.SetName}} {{m.getGenerateModel(set.SetInfo.Model).ShortName}} {{m.getSlate(set.SetInfo.SlateId).SlateName}} {{set.SetInfo.LineupCount}} Lineups {{mlc.getPrettyDate(set.SetInfo.CreatedUtc)}}

X

Replacing {{m.replacingPlayer.Name}} ({{m.replacePlayerPos}})

NCAA College Football DFS Projections (54) NCAA College Football DFS Projections (55) {{player.Name}}• {{player.PTEAM}} {{player.OTEAM_VS}} {{player.SalStr}} {{player.UserPP}}

{{m.replacingPlayerMessage}}

X

{{m.positionFilterSlot.req.PositionName}} Positions

    ALL {{pos.Pos}}

NOTE: Select the positions you want to use when optimizing this flex spot.

X

Basics Sorting Optimizer Update Basics

X

Filters and Sorting Options

    ALL {{pf.FilterText}}

Teams Salary

{{m.matchupDataSorter.Name}}

{{m.matchupDataSorter.Columns[m.matchupDataSorterColIdx]}}

{{str}}

{{m.selectedSorter.Name}}

{{sorter.Name}} {{sorter.Desc}}

Settings

X

Salary Reset Salary Filters

X

Lineup Settings

{{opt.Name}} {{opt.Desc}} This option is not saved between slates. {{opt.Val1}} max

    {{pf}}

{{opt2.Val}} max ({{opt2.Pos}})

X

Reset options back to default

X

Team Stacks

Create Stack Requirement

ACTIVE STACK REQUIREMENTS

X

STACK {{$index+1}}{{stk.enabledStr}}

Teams ({{stk.teamsCntStr}}) Options

    2 3 4 5

X

YOUR ADJUSTMENTS

View Adjustment Type Actions
{{m.count_liked}} Liked Players Clear Liked Players
{{m.count_removed}} Excluded Players Clear Excluded Players
{{m.count_projAdj}} Proj Adjusted Players Clear Proj Adjustments

X

NCAA College Football DFS Projections (56) {{mod.Name}}

{{mod.Description}}

X

How would you like to export this set?

EXPORT AS NEW LATE SWAP - ID LINKED

{{m.exportDialogError}}

Upload this file to DraftKingsFanDuelYahoo

X

SWAPTIMIZER

1. The Swaptimizer will re-optimize each lineup in this set.

2. Optimizer settings are used, adjust those first before swaptimizing. Team stacks are not used.

Late Swaptimize Only Only players whose games haven't yet started will be optimized, leaving in place players who are locked.

Save Original Set After the swaptimize operation a new set will be created and the original will also remain. If you disable this, the original set will be deleted.

Allow Duplicate Lineups Since less unlocked players will be available, allow duplicate lineups to be generated.

SWAPTIMIZE SET!

X

Upload CSV Lineups File From {{m.siteName}}

1. Make sure the correct slate is selected on LineStar.

2. Download your DraftKings FanDuelYahoo Lineups CSV File.

3. Tap the 'Choose File' button below and select file downloaded in step 2.

4. A LineStar set will be created. These lineups map to your {{m.siteName}} Lineups by ID. Don't change Linup Names.

5. When you export this set, you'll be asked to output as linked.

{{m.uploadDFSCSVMessage}}

Uploading lineups...

Map player: {{m.uploadedFileInfo.playerToMap.Name}}

Cancel

Upload Projections

OR Clipboard Paste

{{val.Name}} {{val.selectedName}} ({{val.index}})

Cancel

{{m.uploadedFileInfo.namesMapped}} of {{m.uploadedFileInfo.totalRows}} names mapped Save projections Projections saved.

X

Teams

Deselect AllSelect All

Selected teams will be used when optimizating.

Selected teams will be used when stacking for this stack setup.

Set max exposure on selected teams:

{{cat.Key}}
Team Max Exp {{ie.Name}}
{{ie.Value}}
{{ie.Value}}
{{ie.Value}}

X

Actions Visuals Interface

Hide Games View when projections are scrolled down.

Update position filter when auto-progressing builder slot

Update position filter when manually changing builder slot

Hide players projected for 0

Delete all my optimized lineup sets for this period. Delete Lineup Sets

Resets all projections you have changed. Reset Projections

Reset all players you have liked or faded. Reset Likes & Fades

Export projections to a .csv file for the current slate. Export Projections

Import projections from a .csv file or clipboard.
Data must be comma delimited.
Import Projections

Use Legacy Player Cards

Show headshots in projections.

Show header column for every expanded row

Show player matchup column

Show player alerts column

Show alerts as stars

X

Compound Filters

Pre-Loaded Filters

Your Saved Filters Create New Filter Export To Clipboard Import From Clipboard

Valid filter data was not found in the clipboard.

Your filter has been exported to the clipboard.

Active Filter Add Group

Delete

All filters within this group will evaluate using this operation: Delete Group
Type Filter Operation Value Add Row
-

{{mlc.mediaToggleMaximized?"X":"^"}}

X

{{cc.chatTitle}}

Chat

Status

Blocked

Setup Your Chat Account

Loading Chat...

BIGPLAY {{msg.GameScore}} · {{msg.GameDesc}} · {{msg.readableTime}} +{{msg.FP_DK}} FP {{msg.TotalFP_DK}} FP Total

NCAA College Football DFS Projections (60) NCAA College Football DFS Projections (61) {{msg.EventText}}

{{msg.User.Name}}

{{msg.User.MonthScore}} Admin Featured Fan of Day MVP Expert Expert

{{msg.readableTime}}

Block

{{msg.TotalScore}}

Subscribe to see all messages.

Send

Your Chat Status

Your Chat Name {{cc.gChatUser.Name}} Set Chat Name Subscription Required

Chat Status {{cc.gChatUser.StatusText}}

Lifetime Score {{cc.gChatUser.MessageCount}}

Month Score {{cc.gChatUser.MonthScore}}

Chat Ranking

Chat Options

Chat Icons Explained

NCAA College Football DFS Projections (62) Indicates the member has a verified status set by LineStar admins.
We grant this to indicate this member has provided exceptional content in chat.

NCAA College Football DFS Projections (63) The member has a 1-star LineStar chat rating.

NCAA College Football DFS Projections (64) The member has a 3-star LineStar chat rating.

NCAA College Football DFS Projections (65) The member has a 5-star LineStar chat rating.

NCAA College Football DFS Projections (66) The member has a 7-star LineStar chat rating.

NCAA College Football DFS Projections (67) The member has a 10-star LineStar chat rating.

LineStar Community Guidelines

LineStar welcomes contributions from our users. We strive for civil, enlightened discussions on players, matchups, and games. Please abide by our posting standards:

1. Be civil

2. No personal attacks or insults

3. Stay on topic

Users who violate our posting rules will have their comments blocked or deleted. Users who flagrantly violate our standards can have their commenting privileges revoked at the moderator's discretion.

Blocked Users

{{bu.Name}}NCAA College Football DFS Projections (68)

0 blocked users.

Choose Your Chat Name

Choose wisely, you'll be stuck with this name for the foreseeable future.

This is the name I want!

LineStar Community Guidelines

LineStar welcomes contributions from our users. We strive for civil, enlightened discussions on players, matchups, and games. Please abide by our posting standards:

1. Be civil

2. No personal attacks or insults

3. Stay on topic

Users who violate our posting rules will have their comments blocked or deleted. Users who flagrantly violate our standards can have their commenting privileges revoked at the moderator's discretion.

Cancel

X

NCAA College Football DFS Projections (69) {{mlc.fscInfo.sportName}} {{mlc.fscInfo.siteName}} Slates

    ALL ({{mlc.slatesCntAll}}) Normal ({{mlc.slateSCntDef}}) Showdown ({{mlc.slatesCntShowdown}}) Tiers ({{mlc.slatesCntTiers}})

{{slate.SlateName}}

{{mlc.getSlateStatusStr(slate)}}

{{mlc.toTimeStr(slate.SlateDateUtc)}}

{{slate.Games}} Games

Closed Slates

{{slate.SlateName}}

{{mlc.getSlateStatusStr(slate)}}

{{mlc.toTimeStr(slate.SlateDateUtc)}}

{{slate.Games}} Games

X

Games For Selected Slate

NCAA College Football DFS Projections (70) {{game.AwayTeamAbrev}} {{game.AwayTeamScore}} {{game.AwayTeamRecord}} O/U {{game.VegasTotals}} {{game.VegasMoneyLineAway}}

NCAA College Football DFS Projections (71) {{game.HomeTeamAbrev}} {{game.HomeTeamScore}} {{game.HomeTeamRecord}} {{game.VegasSpreadHome}}

{{game.GameFriendlyTime}}

{{game.StatusText}}

{{game.PostponeChance}}% {{fscInfo.Sport==3? "PPD" : ""}}

{{game.PostponeChance}}% {{fscInfo.Sport==3? "PPD" : ""}}

X

Current Period

{{mlc.currentPeriod.LocationName}} {{mlc.currentPeriod.Name}} Last Updated {{mlc.currentPeriod.prettyDate}}

Past Periods

{{period.LocationName}} {{period.Name}} Last Updated {{period.prettyDate}}
NCAA College Football DFS Projections (2024)
Top Articles
Latest Posts
Article information

Author: Cheryll Lueilwitz

Last Updated:

Views: 6249

Rating: 4.3 / 5 (54 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Cheryll Lueilwitz

Birthday: 1997-12-23

Address: 4653 O'Kon Hill, Lake Juanstad, AR 65469

Phone: +494124489301

Job: Marketing Representative

Hobby: Reading, Ice skating, Foraging, BASE jumping, Hiking, Skateboarding, Kayaking

Introduction: My name is Cheryll Lueilwitz, I am a sparkling, clean, super, lucky, joyous, outstanding, lucky person who loves writing and wants to share my knowledge and understanding with you.