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
lkiklkik thanks a lot. description of the indicator seems wrong ...
robertogozzi Sorry, you're right. The correct description, from https://www.tradingview.com/script/omlpq...
carlvan Hi Nicolas, thank you for this very interesting code. There is something I don't get though ...
Atemi19 probleme code : message veuillez definir alpha futur nbO X X1Y y1
Xtian Bjr Nicolas , pour exemple cet indicateur est extrêmement bien développé chez trading view ...
Actaru5 Hi, I couldn't see the candles well. Changing the code solves the problem. from line 164 to...
LucasBest Thank you
Alai-n @LucasBest Hello, do you think it is possible to isolate moving averages? I would like to us...
Alai-n I really like it when you develop ideas around price movement! I am much less a fan of all t...
finplus Bonjour, une petite demande concernant cet indicateur : comment faire pour que lorsque la bo...
LucasBest Bonjour, la coloration des bandes se fait ligne 111 et 112 à l'aide des instructions colorbe...
Matriciel Very nice job ! Is it possible to do the opposite because what interests me is to have the ...
YvesRobert Hi Matriciel, how can we do this, because stochastic is limited between 0 and 100 but price ...
Traderfox06 Dear zeiiermantrading, I really like your approach combining adaptive averages with MACD in...
Goldotor Thank you for sharing this indicator. That's a great work.
Stefano1234 there is an error: Define the variable: prd, showBreak, showPattern, showPvts
romanelli4 molto interessante e grazie ma come faccio a trasformarlo in trading system? grazie per l...
larouedegann Très Très bon indicateur. Je l'utilise en 1minute
NEOMKEY Excelente trabajo. Lo uso también en scalping de 1 minuto.
philippe59139 bonjour zeiiermantrading , merci pour ton excellent travail, je me suis permis de rajouter ...
jacquesgermain Hello IASD it's normal , when this occurs, uncheck RSI and MFI line and click then the MAC...
emiliobercial Thank you very much for sharing!
Carlose estoy de acuerdo con IASD Esta muy bien el MAD y el indicador en el precio no se ven bien...
Nicolas
10 months ago
Florian Hello Nicolas, This indicator repainting ?
Nicolas It's impossible for it to repaint the values of the past.
elcortijoverde Muy buen trabajo.Intuitivo y claro.Gracias por tu dedicación y aportación.
FXtonio Nicolas.... MERCI 1 millions de fois, cet indicateur gagne dans 75% des cas en scalping m1 ...
davy42 bonjour, à quel moment apparait le fleche, à l'ouverture ou la fermeture de la bougie? merci
Freezer Bonjour, est-il possible d'ajouter une alarme sonore sur PRT à l'apparition des flèches ? Br...
Nicolas
10 months ago
B-Xtrender
B-Xtrender
8
Indicators
616248 Bonjour Nicolas, Peux tu nous expliquer le principe de fonctionnement ? Ou nous mettre un...
Nicolas Le lien vers l'article IFTA de l'auteur est dans le post déjà :)
P. Marlowe Very poweful indeed. It deserves close attention. I really appreciate very much IFTA backgro...

Top