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
Marius Zammit Still learning and very new to all this. Can this indicator be turned into an automated trad...
Nicolas Yes sure, please create a dedicated post in the automated trading forum.
leederbyshire Hi is it possible to replace the dots with red/green vertical lines? Thank you.
Nicolas Add indicator on price doesnt require any specific type of subcription. Click on the wrench ...
tahiti bonjour j'ai une petite question comment peux on enlevé la bar blanche sur la bougie en cour...
sixeight Hi Kris, is there a way to increase the number of rows? I get a loop error
Nicolas It may be possible that the variables are still present in the code while they are also in t...
luxrun I found this solution, thanks
luxrun thanks Nicolas
Nicolas
6 years ago
CCI Trend
v10.3
CCI Trend
1
Indicators
Abdelkrim Maksour hi sir is this indicator for mt4 and how i can get one .
sir_i Bonjour à tous, Je suis nouveau sur le forum et sur la plateforme, pourriez-vous me dire com...
Nicolas Il faut simplement l'appliquer sur le prix.
sir_i Merci pour la réponse, je ne suis pas familier avec l'application de cette procédure simple,...
funkystuff Salut Balmora, Ton indicateur est plutôt intéressant :) Penses-tu qu'il soit possible de l'...
brian gilbert Hello, can you explain to me what are "pipsize" and "ATAN"? What functions do they have and ...
Bodaris Bonjour, Je suis débutant 1 mois :p pipsize ressemble à la fonction pointsize et ATAN...
Nicolas Il s'agit d'un indicateur compatible avec PRT v11 uniquement. Pour éviter les erreurs de cop...
Sébi Intéressant. Merci pour ce partage Nicolas. L'indicateur ne considère pas les divergences ...
Nicolas ok, pour les divergences chacun voit midi à sa porte je dirai :) Vu qu'il n'y a pas de formu...
Nicolas File and code are updated.
Zasinas2000 Hi allo I am not sure I am doing it correctly, but this adds to proreal as an indicator. ...
Trimicha Hi, when I copy the code, i get an error message that LinRegPeriod is not defined. Doe...
robertogozzi
6 years ago
M-Oscillator
M-Oscillator
10
Indicators
robertogozzi Sorry for my late reply. I’ll make it and open a new topic quite soon.
swapping ah ah ! je n'avais pas vue celui-ci, excellent robert ;)
robertogozzi Thank you swapping.
Nicolas change the lastline with: RETURN lastsig and check if lastsig change its value with the a...
nectouxg Hello Nicolas, I will try tonight when I get home, just one last question, I trade the DA...
FXtonio Bonjour, j'ai un problème avec le code, il me dit que ce n'est pas correct ligne 26-27-28: ...
Nicolas Good job Gabri, I confirm that with the new ProRealTime v11, everyone will be able to use in...
Slowlyslowly can u just help me with the exact definition of percbox , mm and period to understand will a...
Vinks_o_7 Great, thanks a lot Nicolas !
Teddy Coronak Top Nicolas ! Merci
Andyswede Thank's! Great indicator:)
mcha merci bien et félicitations pour la réactivité avec laquelle il a été mis dans la bibliothèq...
soulintact Great indicator Nicolas, thanks!
juanj
6 years ago
juanj I have actually completely redesigned this indicator with loads of improvements, so will res...
Didouqc Bonjour Nicolas, Merci pour cet indicateur, encore génial! Je souhaite faire une suggest...
cdc.andersson Hello, when trying to include this wonderful Dynamic RSI on my trading system i get the erro...
Rafyone Bonjour Nicolas et bonne année lol J'ai une erreur qui apparait concernant drawbarchart une...
Nicolas Je pense que tu n'utilises pas le bon éditeur de code, cette instruction est compatible uniq...
Kris75 Hi, This is great !! anyone ever developped a strategy about it ???
swapping hello Kris75, not that I know but it is possible to make a scenario ;)
digitation Hi swapping, Thanks for sharing this useful tool. I was wondering how difficult it would be...

Top