Hello,
I would like to see on daily time frame all the stocks that meet following criteria:
- The closingprice of the stock has been below the EMA50 for 120 days and now closes for first time above the EMA50
Thanks
gr Marco
JSParticipant
Veteran
Hi @Marco7630
Hereby the screener:
EMA50=ExponentialAverage[50](Close)
C1=Summation[120](Close[1]<EMA50)=120
C2=Close>EMA50
Screener[C1 and C2]
Hi Js,
What is the code for following:
The price of the stock times the average daily volume last 30 days should be above 50 million.
Greetimgs Marco
JSParticipant
Veteran
Hi Marco,
C1=Close*Average[30](Volume)>50000000
Screener[C1]
Hi JS,
Is it possible to screen on 2 day period instead of 1 day or 1 week?
gr Marco
JSParticipant
Veteran
Hi Marco,
No, not possible..
(But you can use 48 hours, for example…)
JSParticipant
Veteran
Hi Marco,
Sorry, it’s about screeners…
Yes, you can make almost any combination… (also 2 days)…
Ok, what code should i use than if i want to see all stocks that have gone up 5% on a 2day timeframe?
JSParticipant
Veteran
Try this one:
TimeFrame(Daily)
Gain=(Close-Close[2])/Close[2]
C1= Gain>0.05
Screener[C1](Gain*100 as "Procent gain in 2-days (%)")