Esempio n. 1
0
 /// <summary>
 /// Segment I (weeks 1-4)
 /// Pointer Ten: (p 67)
 ///   Due-Ups
 ///     When a team first gets 5 points or more above its starting number power rating, 
 ///     it becomes due down.  I look to bet against such a team.  When a team first gets 
 ///     5 points or more below its starting number power rating, it becomes a team that 
 ///     is due-up, and one I look to bet.
 /// </summary>
 /// <param name="team"></param>
 /// <param name="upcomingGame"></param>
 /// <returns></returns>
 public static bool DueUp( NflTeam team, NFLGame upcomingGame )
 {
     bool isDueUp = false;
      if ( team.DueUpWeek().Equals( upcomingGame.Week ) )
     isDueUp = true;
      return isDueUp;
 }