Pocket pivot point
Forums › ProRealTime English forum › ProScreener support › Pocket pivot point
- This topic has 6 replies, 3 voices, and was last updated 1 year ago by
Iván.
Viewing 7 posts - 1 through 7 (of 7 total)
-
-
05/07/2024 at 2:46 PM #232431
Hello,
I would like to see all the stocks that meet the following criteria:
- De price is above EMA50 day
- De price is higher then 2 usd
- De price is higher then price day before
- The last daily volume bar (which is green) needs to have a higher volume then any RED volume bar in the last 10 days (see attachment for example)
gr Marco
05/08/2024 at 7:54 AM #232451Hi. Here you have the code:
12345678910111213141516171819202122//---EMAema50 = average[50,1](close)//---Green and Red volume bargreen=close>close[1]red=close<=close[1]//---Volume redif red thenvolred=volumeelsevolred=0endif//---Maximum volume red in 10 barsmaxvolred = highest[10](volred)//---Setupc1 = close > ema50c2 = close > 2c3 = greenc4 = volume>maxvolredsetup = c1 and c2 and c3 and c4screener[setup]1 user thanked author for this post.
05/08/2024 at 9:27 AM #232453Hi @Iván
Nice solution…
I see that you make the color of the “volume bar” depend on “Close and Close[1]” e.g. green is “Close>Close[1]”…
Doesn’t the color of the volume bar depend on the “Close and Open”, e.g. green is “Close>Open”…?
05/08/2024 at 3:08 PM #23248205/08/2024 at 3:20 PM #23248605/08/2024 at 3:29 PM #23249005/08/2024 at 4:11 PM #232495 -
AuthorPosts
Viewing 7 posts - 1 through 7 (of 7 total)