Help converting text to rules: new screen on eps

I found this text and would like some help in converting it into a screen. There are five rules:

  1. The most recent consensus earnings estimate for the current fiscal year is greater than it was three months ago

EPSEst(1,qtr) > EPSEst(9,qtr) or is CurQEPSMean > CurQEPS13WkAgo better?

  1. The percentage change over the last month in the consensus earnings estimate for the current fiscal year is greater than or equal to zero

(CurQEPSMean - CurQEPS4WkAgo) >= 0. Here instead of percentages I just tested for positive.

  1. The most recent consensus earnings estimate for the next fiscal year is greater than it was three months ago

NextFYEPSMean > NextFYEPS13WkAgo

  1. The percentage change over the last month in the consensus earnings estimate for the next fiscal year
    is greater than or equal to zero

(NextFYEPSMean - NextFYEPS4WkAgo) >= 0

  1. the percentage difference between the latest reported
    quarterly earnings and the consensus estimate for that period is greater than zero

EPSInclXor(1,QTR) > EPSInclXor(2,QTR)

Thanks for any advise, suggestions, corrections. J

  1. CurQEPSMean > CurQEPS13WkAgo is better. EPSEst is historical. Also, it would be accurate to say EPSEst(0,qtr) > EPSEst(1,qtr) since each quarter is approx 3 months.
  2. Yes
  3. Yes
  4. Yes
  5. Try EPSActual(0,QTR) > ESPEst(0,QTR)

Thank you! Small details but big difference in results.