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!!
You should have been returned an error because MACD’s opening bracket “[” is mistakingly replaced by “(“.
It’s now working on my platform, Daily TF, 1K units.
Thanks! I made the change, but still received error message –
(see attachment)
Thanks again!
You have to replace variables S,L snd Si with numeric constants or assign them a numeric constant.
c1 = MACD[12,26,9](close)>0
this should do.