after checking some topics I tried to find those stocks than in the last “NumSes” sessions had negotiated, at least one time during this period, “x” times the average volumen of the last 50 sessions.
Screener to get those stocks that during the last
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Screener to get those stocks that during the last "NumSes" sessions has negotiated, at least one time, "x" times average volume of the last 50 sessions.
// NumSes describes number of sessions back that will be screened to find the condition.
//x describes the number of times more volume that will be screened
//Cond will get those stocks that have a big increase of volume in, at least, one session.
NumSes=15
x=5
Fori=1toNumSes
IFvolume[i]>(x*average[50](volume))then
count=count+1
endif
next
Cond=count>1
SCREENER[Cond](countas"Picos")
Apparently it should be easy but I´m stacked… cause I´m getting a lot of results that are not the ones I´m seeking for. I´ll appreciate your help.
Only post in the language of the forum that you are posting in. For example English only in the English speaking forums and French only in the French speaking forums.
Moved from the Spanish forum.
Thank you 🙂
Only post in the language of the forum that you are posting in. For example English only in the English speaking forums and French only in the French speaking forums.
Moved from the Spanish forum.
To help us continually offer you the best experience on ProRealCode, we use cookies. By clicking on "Continue" you are agreeing to our use of them. You can also check our "privacy policy" page for more information.Continue