Stocks with X times the average volume from last 50 sessions.

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #185030 quote
    klearra
    Participant
    New

    [attachment file=”185031″]

    Hi all,

    after checking some topics I tried to find those stocks than in the last “NumSes” sessions had negotiated, at least one time during this period, “x” times the average volumen of the last 50 sessions.

    // Screener to get those stocks that during the last "NumSes" sessions has negotiated, at least one time, "x" times average volume of the last 50 sessions.
    
    // NumSes describes number of sessions back that will be screened to find the condition.
    
    //x describes the number of times more volume that will be screened
    
    //Cond will get those stocks that have a big increase of volume in, at least, one session.
    
    NumSes= 15
    x= 5
    For i=1 to NumSes
    IF volume[i]>(x*average[50](volume)) then
    count=count+1
    endif
    next
    Cond=count>1
    
    SCREENER[Cond] (count as "Picos")

    Apparently it should be easy but I´m stacked… cause I´m getting a lot of results that are not the ones I´m seeking for.  I´ll appreciate your help.

    Thanks in advance.

    Koldo

    PICOS-VOLUMEN.itf
    #185033 quote
    robertogozzi
    Moderator
    Master

    Only post in the language of the forum that you are posting in. For example English only in the English speaking forums and French only in the French speaking forums.
    Moved from the Spanish forum.
    Thank you 🙂

    There you go:

    NumSes= 15
    x= 5
    count = summation[NumSes](volume[i]>(x*average[50](volume)))
    Cond=count>1
     
    SCREENER[Cond] (count as "Picos")
    #185192 quote
    klearra
    Participant
    New

    Hello Roberto, thanks for the answer but it asks me to define the parameter "i" and I have not been able to do it. thank you very much, koldo

    #185196 quote
    robertogozzi
    Moderator
    Master

    Replace it with 1.

    #185199 quote
    robertogozzi
    Moderator
    Master

    Only post in the language of the forum that you are posting in. For example English only in the English speaking forums and French only in the French speaking forums.
    Moved from the Spanish forum.

    Thank you 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.

Stocks with X times the average volume from last 50 sessions.


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
klearra @klearra Participant
Summary

This topic contains 4 replies,
has 2 voices, and was last updated by robertogozzi
4 years, 2 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 01/10/2022
Status: Active
Attachments: 1 files
Logo Logo
Loading...