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
There you go:
100*average[7]/average[65]
Thank 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>=5
Sorry, 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.
I think maxv65 meaning is maximum volumes of last 65 days
and minv3.1 meaning is minimum volumes of last 3 days
Also my screener shows only 50 records. Can I add some code to display all search records?
Thanks for your kind help.
Demo 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):
c1 = highest[65](volume) >= 8900000
c2 = (average[7]/average[65]) >= 1.04
c3 = lowest[3](volume) >= 100000
c4 = (close >= 5)
x = c1 and c2 and c3 and c4
Screener[x]
Thank you so much…work like a charm.
How can we add following condition into this –
today’s volume is greater than yesterday volumes
There you go:
c1 = highest[65](volume) >= 8900000
c2 = (average[7]/average[65]) >= 1.04
c3 = lowest[3](volume) >= 100000
c4 = (close >= 5)
c5 = volume > volume[1]
x = c1 and c2 and c3 and c4 and c5
Screener[x]
I 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:
c1 = (average[7]/average[65]) >= 1.05
c2 = lowest[3](volume) >= 100000
c3 = (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 c7
Screener[x]
I 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]