Hi,
I really like the new indicator: PRT bands
I would like to see all assets that meet these requirements:
<li class=”elementToProof”>Price above 5 usd
<li class=”elementToProof”>Average Volume per day above 1 million
<li class=”elementToProof”>The current price candle crosses over the medium term line (PRT). Daily basis
Gr MArco
Hello,
Can somebody help me with this one?
Thanks
Gr Marco
Hi,
you need to add a number where said to define the necessary “period” for your average, and to select daily timeframe in your screener window
c1= close>5
period= //add number for your average
c2= average[period](volume)>1000000
c3= close>PRTBandsMediumTerm
screener[c1 and c2 and c3]
Hi,
Average volume per day for the last 30 days. What do i need to add then?
Thanks
gr Marco
line 3 was given as:
period= //add number for your average
for an average on 30 days, replace it with:
period=30
Thanks.
The result is not what i am looking for unfortunately. I would like to see the assets the cross over the medium term line. So yesterday they were below it and today the price is above it.
gr Marco
My fault, went too fast on c3, here it is with cross over
c1= close>5
period=30
c2= average[period](volume)>1000000
c3= close crosses over PRTBandsMediumTerm
screener[c1 and c2 and c3]