How to find Pivot High through screener?

I want to find stocks on different timescales which have a pivot High at least 13 candles before. How to do it? @Streak @Sensibull Please help

For example see this image
Screenshot_2020-07-14%20NIFTY%2010589%2095%20%E2%96%BC%20%E2%88%921%2097%25%201

@ShubhS9 kindly avoid changing categories without due diligence. Don’t do it again in future atleast for my post dont.

@siva I was seeking help for creating a screener but somehow my post was shifted to a different category and was not visible. Please keep the post moderation to zerodha employees only.

Bro, I shifted it to Streak category so that it becomes easy for Steak team to respond to your query.

1 Like

Hi @Tapovan_Vashisht,

Pivot high is found by finding the high of 13 candles requires 27 candles where 13 candles highs before and after the pivot high were lower than the pivot high level.
So to make sure 13th candle high was pivot high you, it can be created easily as :

high(-13) equal to period max(14,high(0))
and high(-13) higher than period max(13,high(-14))
This is how it looks

You can change the params to customize to your requirement, also you can use Mutli-time frame option to do the same across multiple time frames in one scanner itself.

3 Likes