Pocket pivot point

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #232431 quote
    marco7630
    Participant
    New

    Hello,

    I would like to see all the stocks that meet the following criteria:

    1. De price is above EMA50 day
    2. De price is higher then 2 usd
    3. De price is higher then price day before
    4. The last daily volume bar (which is green) needs to have a higher volume then any RED volume bar in the last 10 days (see attachment for example)

     

    gr Marco

    2024-05-07_15-39-58.png 2024-05-07_15-39-58.png
    #232451 quote
    Iván González
    Moderator
    Master

    Hi. Here you have the code:

    //---EMA
    ema50 = average[50,1](close)
    //---Green and Red volume bar
    green=close>close[1]
    red=close<=close[1]
    //---Volume red
    if red then
    volred=volume
    else
    volred=0
    endif
    //---Maximum volume red in 10 bars
    maxvolred = highest[10](volred)
    //---Setup
    c1 = close > ema50
    c2 = close > 2
    c3 = green
    c4 = volume>maxvolred
    
    setup = c1 and c2 and c3 and c4
    
    screener[setup]
    JS thanked this post
    #232453 quote
    JS
    Participant
    Veteran

    Hi @Iván

    Nice solution…

    I see that you make the color of the “volume bar” depend on “Close and Close[1]” e.g. green is “Close>Close[1]”…

    Doesn’t the color of the volume bar depend on the “Close and Open”, e.g. green is “Close>Open”…?

    #232482 quote
    Iván González
    Moderator
    Master
    Hi JS! No it doesn’t. Look at the screenshot
    Captura-de-pantalla-2024-05-08-160507.png Captura-de-pantalla-2024-05-08-160507.png
    #232486 quote
    marco7630
    Participant
    New
    thanks Ivan
    #232490 quote
    JS
    Participant
    Veteran
    Hi Iván

    Look at this screenshot… 😉

    ???

    Scherm­afbeelding-2024-05-08-om-16.13.34-copy.pdf
    #232495 quote
    Iván González
    Moderator
    Master
    Hi We can modify in settings. By default is close >= close[1] –> green
    JS thanked this post
    Captura-de-pantalla-2024-05-08-170842.png Captura-de-pantalla-2024-05-08-170842.png
Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.

Pocket pivot point


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 6 replies,
has 3 voices, and was last updated by Iván González
1 year, 10 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 05/07/2024
Status: Active
Attachments: 4 files
Logo Logo
Loading...