Trend Intensity Indicator
Forums › ProRealTime English forum › ProScreener support › Trend Intensity Indicator
- This topic has 49 replies, 3 voices, and was last updated 3 years ago by bertrandpinoy.
-
-
05/26/2021 at 1:58 PM #170503
Please help me to convert following formula from TeleChart Software to Prorealcode:
100*AVGC7/GC65
where AVGC7 = the 7 day simple moving average
AVGC65 = the 65 day moving average
05/26/2021 at 2:01 PM #170505There you go:
1100*average[7]/average[65]05/26/2021 at 2:15 PM #170506Thank you so much for your help.
How to use it for max. Basically I need following formula:
maxv65>=8900000 and avgc7/avgc65>=1.04 and minv3.1>=100000 and c>=505/26/2021 at 2:45 PM #170511Sorry, I don’t know that language, I posted that code because you wrote their meaning.
If you post the meaning of maxv65 and minv3.1 I will help you further.
05/27/2021 at 5:24 AM #170559I think maxv65 meaning is maximum volumes of last 65 days
and minv3.1 meaning is minimum volumes of last 3 daysAlso my screener shows only 50 records. Can I add some code to display all search records?
Thanks for your kind help.
05/27/2021 at 6:46 AM #170560Demo accounts show max 50 results and Real accounts max 100.
You can duplicate your screener as many times you need, changing the price filter so that in one it’s, say, 5-8, another one it’s 8-12, etc…
But only real accounts allow multiple screeners to be run at the same time.
In the above code I assumed C is CLOSE (the current price):
123456c1 = highest[65](volume) >= 8900000c2 = (average[7]/average[65]) >= 1.04c3 = lowest[3](volume) >= 100000c4 = (close >= 5)x = c1 and c2 and c3 and c4Screener[x]05/27/2021 at 9:14 AM #170581Thank you so much…work like a charm.
05/27/2021 at 12:33 PM #170606How can we add following condition into this –
today’s volume is greater than yesterday volumes05/27/2021 at 1:10 PM #170609There you go:
1234567c1 = highest[65](volume) >= 8900000c2 = (average[7]/average[65]) >= 1.04c3 = lowest[3](volume) >= 100000c4 = (close >= 5)c5 = volume > volume[1]x = c1 and c2 and c3 and c4 and c5Screener[x]05/27/2021 at 2:15 PM #17062405/27/2021 at 2:58 PM #170628I need to create Low Threshold Breakout scan with following conditions – minv3.1>=100000 and c>=1 and avgc7/avgc65 >=1.05 and c>o and c>c1 and c/c1>c1/c2 and c1/c2<1.02 Meaning – Minimum 3 days volume = 100K, 7 days moving average/65 days moving average>=1.05
today’s price percentage greater than yesterday and yesterday price percentage greater than 2%.I have written following code from previous code reference. Kindly check if this is correct or needs to be updated:
123456789c1 = (average[7]/average[65]) >= 1.05c2 = lowest[3](volume) >= 100000c3 = (close >= 1)c4 = (close > open)c5 = (close > close[1])c6 = (close/close[1]>close[1]/close[2])c7 = (close[1]/close[2]<1.02)x = c1 and c2 and c3 and c4 and c5 and c6 and c7Screener[x]05/27/2021 at 4:19 PM #170630That’s perfect!
05/28/2021 at 12:13 AM #17064305/30/2021 at 6:29 AM #170758I need to create Episodic Scan with following condition – (100* (c – c1) / c1)>=8 and v >3000 and (100 * V / AVGV100)>=300
it basically looks for a out-sized move of 8% plus A volume surge of 3 times average 100 day volume.I have written following code but it’s giving error on Average. Kindly review and advise:
c1 = (100 * (Close – Close[1]) / Close[1]) >=8
c2 = Volume >3000
c3 = (100 * Volume / Average Volume[100]) >=300
x = c1 and c2 and c3
SCREENER[x]05/30/2021 at 6:36 AM #170759It’s
1Average[100](volume) -
AuthorPosts
Find exclusive trading pro-tools on