hi
see stocks that have risen by at least 5%
The price of the stock is above 1 less than 10
fraicheursignal = -1
volumeminimum = 10000
IF fraicheursignal=-1 AND Volume > 3*(Average[20](Volume)) AND volume > volumeminimum THEN
fraicheursignal = 0
ENDIF
IF fraicheursignal=-1 AND Volume[1] > 3*(Average[20](Volume)[1]) AND volume > volumeminimum THEN
fraicheursignal = 1
ENDIF
IF fraicheursignal=-1 AND Volume[2] > 3*(Average[20](Volume)[2]) AND volume > volumeminimum THEN
fraicheursignal = 2
ENDIF
IF fraicheursignal=-1 AND Volume[3] > 3*(Average[20](Volume)[3]) AND volume > volumeminimum THEN
fraicheursignal = 3
ENDIF
c1 = (fraicheursignal>-1)
SCREENER[c1](fraicheursignal AS "Fraîcheur du signal")
JSParticipant
Veteran
Hi,
What exactly do you want?
Does the screener need to be adjusted or is it good?
Should the new conditions (least>5%, Close>1 and Close<10) be added to the “old” screener?
Or does your screener not work at all and needs an update including the new conditions…?
add
(least>5%, Close>1 and Close<10)
JSParticipant
Veteran
Hi,
You can add the following conditions…
C2=(Close-Close[4])/Close[4]*100>5
You look over the last 4 bars to see if the price has risen more than 5%, you can change the 4 to a number according to your needs…
C3=Close>1 and Close<10
See if the price is greater than 1 and less than 10
SCREENER[C1 and C2 and C3]
Use all the conditions in your screener