Pocket Pivots indicator

Pocket Pivots indicator

Pocket pivots based on Chris Kacher / Gil Morales.

Highest volume of last ten days, higher than any down day.

Stronger the trend the bettter.

Shows accumilation / re accumilation on up days / waves.

I change it to Histogram to get the nice blue bars.

Credit to who wrote this, I was given it over Twitter,

Cheers,

Dale.

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. @Dazzle101 • 06/11/2017 #

    Sorry,
    Line 139 should say;
    RETURN ind1 COLOURED(0, 0, 200) AS “Pocket Pivot”
    When posted it would come up ” Pivot Pocket ” unless changed.
    Thanks
    🙂

  2. @Dazzle101 • 06/11/2017 #

    Update Code

    More accurate signals

    // ———————————-

    // The Pocket Pivot Indicator

    //

    // ver 0.1

    // 0.2 – using the max volume of a down day in the past 10 days

    //

    // ———————————-

    // Basic criteria

    minPrice = 0.0001

    minVol = 1000

    daysToConfirmUpTrend =9

    // Only scan leading stocks above minimal price and 40 day moving average of Volume is above 500000]

    cVol1 = (Close >= minPrice AND Average[50](Volume) >= minVol)

    // Trend is up and Today is an up day

    cPrc1 = (Close >= Average[daysToConfirmUpTrend](Close) AND Close >= Close[1] )

    // Today’s volume should be larger than the volume of the highest down day over the last 10 days

    maxDay = 9

    maxDownDay = 0

    maxDown = 0

    FOR d = 1 TO maxDay DO

    r = Close[d] > Open[d]

    IF r =maxDown THEN

    maxDown = Volume[d]

    maxDownDay = d

    ENDIF

    NEXT

    IF maxDownDay = 0 THEN

    maxDownDayVol = 0

    ELSE

    maxDownDayVol = Volume[maxDownDay]

    ENDIF

    cVol2 = (Volume > maxDownDayVol)

    // draw indicator

    ind1 = (cPrc1 AND cVol1 AND cVol2 )

    RETURN ind1 COLOURED(0, 0, 200) AS “Pocket Pivot Mod 9 Day “

  3. TheN00b • 06/11/2017 #

    Hi, is there Crypto Version, forex version? thank you

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Iván
2 days ago
atlante buenas tardes pero es un sistema que repinta por que pasa eso si repinta no sirve.gracias d...
Iván
2 weeks ago
Madrosat Bonjour ivan Quelle différence il y a t il entre Extra trend et ultra trend lequel est le p...
P. Marlowe Muy bueno. ¿Podría hacerse para señalar extremos por el lado bajista? Lo mismo a la inversa....
Miro Esta es una versión del indicador, para ambos extremos. //-------------------------------...
P. Marlowe Muchas gracias ¡¡
Iván Hi. You could add these lines of code: if intradaybarindex=0 then varhigh=round((dhigh(...
RTR Edit
@toniyecla ¡gracias! más capturas aqui: https://www.prorealcode.com/wp-content/uploads/2024/10/IC...
robert123 I had a go at the 'order block' version- badly done I'm sure....but a start. // Sonarlabs ...
robert123 take ''sens1 = 5'' out and put ''rango'' in as variable
@toniyecla captura: https://www.prorealcode.com/wp-content/uploads/2024/10/sesiones_v3.png
@toniyecla y más opciones: añade una línea también en sesiones EUROPA y USA (configurable) y un texto o...
@toniyecla // Author: toniyecla - contact@rescommunesomnium.com // VARIABLES // EspHorarioVerano (b...
Alai-n Hello, take a look at this formulation made by "Blade106", Topic link attached post #227334....
@toniyecla ¡interesante acercamiento! (no lo conocía, simplemente tuve la necesidad y lo programé) pers...
Iván
1 month ago
MaoRai54 dear Ivan, it seems to be very interesting but please clarify what are all the lines I see i...
Iván Hi! you have the answer in the last line of code... MacdMiddle as "histo" style(histogra...
kats Le Top , a utiliser avec le nuage violet et alerte TN pour plus de précision.
roccafragius Hello Ivan, another great Indicator, very useful to trace the trend ( blue line) and the pos...
roccafragius Hello Ivan, very good job! May I ask you to translate teh script from TradingView named Tre...
Iván Hi! yes. You can ask for it here: https://www.prorealcode.com/free-code-conversion/
roccafragius Thank you so much Ivan! I created this request in english Translate from TradingView Indicat...
Regisnew très bel indicateur merci
jordan //---settings MAmode=0 Period=150 NumberOfMA=100 //---end of settings MA2=undefined ...
jordan dites moi si cela correspond à ce que vous cherchez
kats bonjour merci de ta reponse mais non ca fonctionne pas sympa quand même d'avoir essayé cdlt
Jean2139 Bonjour Yvan, Merci pour ton indicateur que je trouve très intéressant. Je suppose que tu ...
Suffi Hier eine kleine Korrektur: //-----Inputs-----------------------------------------// MALengt...
adeelq79 Hi Ivan, thank you for this indicator. Is it possible to include the volume of buys and sell...
achel J'ai la même erreur sur ligne 1 avec une importation dans les règles de l'art. Comment faire?
Iván Cela est probablement dû au fait que vous avez une ancienne version de l'outillage. Vérifi...
Iván
4 months ago
Iván Hola javier gracias! es importante realizar buenos backtest antes de lanzarse al mercado y ...
achel I have an error with "fillcolor" - How to solve this? / J'ai une erreur avec "fillcolor" - C...
Iván Hi! This is because you are not with V12. Just delete fillcolor

Top