I have these trade rules for a daily bar strategy on SPY:

fast: EMA(C, 12) - EMA(C, 26)
slow: EMA(fast, 9)
histogram: fast - slow
EntryRule: RsiF(histogram, 5) < 10

How can this be implemented using QuantConnect?