This will help you scan for estimated earning beat within the last 10 days.
Plug this into your scanner for potential Stock & Option plays.
Plug this into your scanner for potential Stock & Option plays.
Code:
# Earnings beat Estimated Earnings within the last 10 days
# Mobius
# Chat Room request 07.17.2019
def EE = if isNaN(getEstimatedEarnings())
then EE[1]
else getEstimatedEarnings();
def AE = if IsNaN(GetActualEarnings())
then AE[1]
else GetActualEarnings();
def AE_Bar = if AE != AE[1]
then barNumber()
else double.nan;
plot H = AE > EE and
barNumber() - HighestAll(AE_Bar) <= 10;
Last edited by a moderator: