I thought of a question you are tracking the 20 50 and 200 EMAs to guide entry.
Did you trade spy at 9:50
I had an idea to make you a label for your entry trigger. I am trading the LRC also- so this model is very fun for me. I trade futures. My friend Guava helped me polish it up syntax-wise... trigger 1= your risky entry (close >20EMA and <200 EMA for bull and opposite for bear.) trigger 2 is the safe entry (close > both 20 and 200 for bull) or the reverse for bear. Going to work on adding crossing the LRC lines- they are red and green to show direction.
I added a stacked emas (20/50/200) on the daily label as I like to trade the cantilever of the daily against the smaller timelines in futures. I would prob add an adx label as well.
http://tos.mx/!XhA7mVga entry trigger label (UPDATED!)
http://tos.mx/!giPE8JDb daily 20/50/200 stacked emas label
http://tos.mx/na9nCSA the chart in the picture
With this ticker and daily stacked Bull EMAs - I'd be looking at the LRC channel lines andkeeping an eye for adx/dmi to line up for upside on the hourly and seek 2m long/green triggers for entry.
Will work on adding close crossing the lines - I am not a coder- so bear with me...
Here is updated code for the trigger label it is working perfectly now..
#2m trigger Label for Metal's entry in LRC scalp model
def stackedPositive = expAverage(close(period=aggregationPeriod.day),20) > expAverage(close(period=aggregationPeriod.day),50) and expAverage(close(period=aggregationPeriod.day),200) ;
def stackedNegative = expAverage(close(period=aggregationPeriod.day),20) < expAverage(close(period=aggregationPeriod.day),50) and expAverage(close(period=aggregationPeriod.day),200);
addLabel(yes, "20/50/200 D Stacked", if stackedPositive then color.green else if stackedNegative then color.red else color.gray);