Volumi e volatilità
- This topic has 5 replies, 2 voices, and was last updated 4 years ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
Forums › ProRealTime forum Italiano › Supporto ProScreener › Volumi e volatilità
Salve, vorrei chiedere aiuto per creare queste condizioni in 4 screener, grazie per il supporto.
1 Nell’ultima seduta i volumi sono almeno doppi della media dei volumi delle ultime 50 sedute.
2 Nell’ultima seduta c’è stato il volume più elevato delle ultime 40 sedute.
3 Nell’ultima seduta il range fra min e max è il minore delle ultime 20 sedute.
4 Nell’ultima seduta il range fra min e max è il maggiore delle ultime 20 sedute.
grazie in anticipo!
francesco
N. 1
1 2 |
x = volume >= (average[50](volume) * 2) Screener[x] |
N. 2
1 2 |
x = (volume = highest[40](volume)) Screener[x] |
N. 3
1 2 |
x = (range = lowest[20](range)) Screener[x] |
N. 4
1 2 |
x = (range = highest[20](range)) Screener[x] |