public static int PfrEp(this PlayerHistory ph)
 {
     if (!ph.IsEerlyPosition())
     {
         return(0);
     }
     return(ph.HandActions.PreflopHandActions().RealActions().Any(ha => ha.IsRaiseAction()) ? 1 : 0);
 }
 public static int VpipEp(this PlayerHistory ph)
 {
     if (!ph.IsEerlyPosition())
     {
         return(0);
     }
     return(ph.HandActions.PreflopHandActions().NotBlinds().Any(ha =>
                                                                ha.IsCallAction() || ha.IsRaiseAction()) ? 1 : 0);
 }