I have the following code, but not executing –
// Trampoline Daily
TIMEFRAME(weekly)
c1 = MACD(S,L,Si](close)>0
TIMEFRAME(daily)
c2 = (Low) CROSSES UNDER Average[50](Close)
TIMEFRAME(daily)
c3 = Average[50](Close)>=Average[50](Close)[1]
TIMEFRAME(daily)
c4 = Volume>100000 AND (Close)>2.99
SCREENER [c1 AND c2 AND c3 AND c4]
Conditions –
Macd histogram >0
day’s low crosses below SMA50
SMA50 today >= SMA50 yesterday
Volume > 100,000 AND Close > 2.99
Appreciate any/all help!!
Thanks!!