Trend Intensity Indicator

Forums ProRealTime English forum ProScreener support Trend Intensity Indicator

Viewing 15 posts - 1 through 15 (of 50 total)
  • #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

    #170505

    There you go:

    #170506

    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

    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

    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

    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):

     

    #170581

    Thank you so much…work like a charm.

    #170606

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

    #170609

    There you go:

     

    #170624

    Thank you so much…

    #170628

    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:

     

    #170630

    That’s perfect!

     

    #170643

    Thank you so much.

    #170758

    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

    It’s

     

Viewing 15 posts - 1 through 15 (of 50 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login