Trend Intensity Indicator

Viewing 15 posts - 1 through 15 (of 50 total)
  • Author
    Posts
  • #170503 quote
    Ganeshalove
    Participant
    Junior

    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

    #170505 quote
    robertogozzi
    Moderator
    Master

    There you go:

    100*average[7]/average[65]
    #170506 quote
    Ganeshalove
    Participant
    Junior

    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

    #170511 quote
    robertogozzi
    Moderator
    Master

    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.

    #170559 quote
    Ganeshalove
    Participant
    Junior

    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.

    #170560 quote
    robertogozzi
    Moderator
    Master

    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]
    #170581 quote
    Ganeshalove
    Participant
    Junior

    Thank you so much…work like a charm.

    #170606 quote
    Ganeshalove
    Participant
    Junior

    How can we add following condition into this –
    today’s volume is greater than yesterday volumes

    #170609 quote
    robertogozzi
    Moderator
    Master

    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]
    #170624 quote
    Ganeshalove
    Participant
    Junior

    Thank you so much…

    #170628 quote
    Ganeshalove
    Participant
    Junior

    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]
    #170630 quote
    robertogozzi
    Moderator
    Master

    That’s perfect!

    #170643 quote
    Ganeshalove
    Participant
    Junior

    Thank you so much.

    #170758 quote
    Ganeshalove
    Participant
    Junior

    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]

    #170759 quote
    robertogozzi
    Moderator
    Master

    It’s

    Average[100](volume)
Viewing 15 posts - 1 through 15 (of 50 total)
  • You must be logged in to reply to this topic.

Trend Intensity Indicator


ProScreener: Market Scanners & Detection

New Reply
Author
Summary

This topic contains 49 replies,
has 3 voices, and was last updated by bertrandpinoy
4 years, 8 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 05/26/2021
Status: Active
Attachments: No files
Logo Logo
Loading...