Hi,
I have the screener below. I want to test it on historical dates. Suppose i want to see all the results of this screener on 20-08-2025. What do i need to change in screener?
TimeFrame(Daily)
c18=Average[30](Volume)[1]*Close[1]>1000000
c17=Average[30](Volume)*Close>4000000
C3=Close>1
C14=Volume>1.5*Average[30](Volume)
ema50= ExponentialAverage[50](close)
c4 = ema50>=ema50[1]
ATRpercent=100*(AverageTrueRange[14](close))/close
c5 = ATRpercent>=2
c6=close>close[1]
c11=close>ema50
c15=(high-close)<0.25*(high-low)
C16=(Close-Close[1])/Close[1]*100>atrpercent
Screener[ C3](Volume as “Volume”)
timeframe (weekly)
EMA40=ExponentialAverage[40](Close)
EMA30=ExponentialAverage[30](Close)
EMA10=ExponentialAverage[10](Close)
c12=close>EMA40 and close>ema30 and close>ema10
High52 = highest[52](high[1])
//>
Timeframe(default)
c22 = close >= High52
c23 = high <> low
condition = c3 and c4 and c5 and c6 and c12 and c11 and c14 and c15 and c22 and c23 and c16 and c17 and c18
SCREENER[condition]
gr Marco