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
Carlos Garcia If price tags the lower BBand, look for IIIX has positive values to enter a trade. Converse...
Nicolas Please add a request on forums for any MT4 code conversion, thank you. Follow these easy ste...
mecon I will do so, thank you!
avatar
Anonymous @mecon, did you ever get one?
ullle73 nicolas, can you somehome make this to be in the background of the price chart?
jonpt88 none did that yet right?
Nicolas You can ask for a code modification on forums, please open a new topic with your request.
Thally Thanks for the quick response Nicholas. Would you have any idea how to resolve. Manually ref...
Thally Do you think adjusting the below code might help? newperiod = minuteminute[1] if newperi...
Nicolas There is no "second" instruction.
Toto le Heros Thanks Nicolas. I read somewhere that in the calculation, we should round the value of the A...
Nicolas aADX = round(adx[10])
bolsatrilera
7 years ago
Rainbow Oscillator
Rainbow Oscillator
1
Indicators
Maxime Baudin Interesting, thanks! Combine this indicator with the bollinger bands there is enough to make...
Matriciel
7 years ago
Alai-n Thanks...
FULVIO09
7 years ago
CCI Correction.IND
CCI Correction.IND
1
Indicators
Agima Bonjour Une petite question d'un débutant : Comment faire pour afficher les variables à gau...
Bard Thanks for sharing this Verdi55. More instructions from Larry Williams website (and a fea...
Bard From the url link #post-65420 above but without the chart image: Stocks & Commodities...
Bard Note: lter = filter
Bard Apologies, there's been an issue with copying "f" and "I" from the article and pasting.. whi...
mcha Bonjour Nicolas J'ai mis cet indicateur sur une période graphique 1 heure. J'ai choisi 1...
marzibre Bonjour Nicolas. I work mainly on Daily timeframe. I was looking something similar but usi...
TraderGlyn This is an excellent indicator, it provides a hugely useful visual interpretation that filte...
YvesRobert Merci beaucoup Nicolas. Existe t'il un petit programme qui permet de tracer sur la graphe en...
Nicolas Oui il y a celui ci: https://market.prorealcode.com/product/prt-renko/?lang=fr
YvesRobert Bonjour Nicolas, j'ai une question technique à te poser. Je visualise souvent le cours en RE...
GenesisEX Thank you all for your contributions this is a great submission. Thanks for your inputs.
tino Bonjour nicolas. Je ne parviens pas à recopier le screener de l'indicateur. Auriez vous la g...
Nicolas Quel screener svp? C'est dans un des sujets du forum? Merci de fournir le lien.
Nicolas
7 years ago
Nicolas Merci, faire une demande dans le forum approprié.
Pere Thanks for this good indicator Nicolas. I would like to make the upper and lower limits mor...
Nicolas because fractals are known 2 bars later! that's why I used rectangle to plot them in the past.
Nicolas
7 years ago
Jurik RSX
v10.3
Jurik RSX
3
Indicators
hartgeld Hallo Nicolas, ein sehr guter Indikator, vielen Dank! Leider rechnet er bei mir nicht die Pe...
rigel Hi Nicolas, have you coded the Jurik alone (as Mov. average)?
Nicolas 2 versions available in this indicator: https://www.prorealcode.com/prorealtime-indicators/a...
supertiti Bonsoir à tous For those who like me want to calibrate this indicator on a scale of 0 to ...
gabri Ha ragione in computer, ho sbagliato io BullAD = summation[period](ADvolbull*((Close-Low) –...
marcov66 Perfetto! Funziona. Grazie di tutto!
SkrHugo Bonjour, J'essaye d'utiliser le script avec le graphique renko mais sa ne marche pas, quelq...
AG1 Thanks Nicolas Still a problem in line 29 Please take a look. thanks again Alex
Nicolas code is modified in the above post, use that one.
AG1 Still a problem in line 29 Please take a look. thanks again Alex
Tonicejudo Hola Nicolas, a ver si me puedes ayudar. Hay un indicador que se llama volumen stop de bolsa...
Nicolas Utilice los foros para hacer preguntas no relacionadas con la página actual ...

Top