profilo volume in scarsità

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #244210 quote
    MARTINALA CARTINA
    Participant
    New

    buongiorno, servirebbe uno screener che:

    impostando il volume profile a 8 4 2 1 g..ecc trovi quale assets siano nella scarsità volumetrica di qst periodo,,,con scarsità impostabile <20%…10% eccetera..cioè deve dirmi quando rispetto ad esempio 8 giorni di trading (escluso sabato o domenica nel conteggio,siccome nel conteggio a volte pro realtime li prende) il prezzo si trova nella parte alta o bassa del volume profile ,fuori dalla value zone,in una zona dove la percetuale di volume è bassa..al di sotto di un 20%…ecc impostabile..

    inoltre deve incrociare qst condizione con un altro fattore ,cioè dovrebbe indicare quando ad esempio in una scarsità in cui il prezzo è calato molto ,ed è a scarsità ,indicare la prima barra dove il volume positivo aumenta e supera il volume negativo..al contrario quando a prezzi alti e scarsità il volume negativo supera il volume positivo…grazie

    spero di essermi spiegata grazie

    #244276 quote
    Iván González
    Moderator
    Master

    Ciao. Ecco una prima parte. Se calcola il POC di 8 giorni e poi cerca i valori che crucen por debajo del POC.

    //-----Inputs-------------------------------------------//
    res=15
    //------------------------------------------------------//
    //-----Calculate 8 days --------------------------------//
    once plook=40
    if intradaybarindex=0 and countDay<7 then
    countDay=countDay+1
    bars=bars+1
    elsif intradaybarindex=0 and countDay>=7 then
    plook=bars
    countDay=0
    bars=0
    else
    bars=bars+1
    endif
    //------------------------------------------------------//
    //-----Create arrays for High, Low and volume-----------//
    maxx = highest[plook](high)
    minn = lowest[plook](low)
    step = (maxx-minn)/res //height of the rectangle
    //------------------------------------------------------//
    //-----Calculation POC----------------------------------//
    for i=0 to res-1 do
    volsize=0
    mybot=minn+(i*step)
    mytop=minn+((i+1)*step)
    $bottomboundaries[i]=mybot
    $topboundaries[i]=mytop
    for j=0 to plook-1 do
    if close[j]>=mybot and close[j]<=mytop then
    volsize=volsize+volume[j]
    endif
    next
    $VolLen[i]=volsize
    next
    
    for k=0 to res-1 do
    if $VolLen[k]=ArrayMax($VolLen) then
    x = k
    break
    endif
    next
    
    poc = ($topboundaries[x]+$bottomboundaries[x])/2
    
    screener[close crosses under poc]
    robertogozzi thanked this post
    #244293 quote
    MARTINALA CARTINA
    Participant
    New

    GRAZIE!!!!!!!!!!!COMQ I TUOI INDICATORI SON FANTATICI NE HO SCARICATI ALCUNI

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

profilo volume in scarsità


ProScreener: Scansione Mercati & Screener

New Reply
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by MARTINALA CARTINA
1 year ago.

Topic Details
Forum: ProScreener: Scansione Mercati & Screener
Language: Italian
Started: 02/23/2025
Status: Active
Attachments: No files
Logo Logo
Loading...