Current High , Current Low on the Daily how to make a scan to find certain percentage retracement?

adarty73

New member
I had this code from @korygill that it will give me the last 2 points on the daily the High Pivot and the Low Pivot. I modified I added a percentage of retracement from the Previous High to the New Low or at least the current Low..

What I would like to do is find stocks that has retracement certain percentage from High Point For Example that retrace 20% percentage from that High Pivot. Its working but how can I implement into a scanner? that find stocks that has retrace from Pivit High to either (last) or that current low.? Does anyone can help me

def Retrace= 100*((mostRecentLow-mostRecentHigh)/mostRecentHigh);
AddLAbel(yes,
"PullBack from mostRecentHigh:" + Round(retrace, 2)+ " %",color.GRAY);


The Entire code is :
# HighLowLookback
#
# Study to show the highest high and lowest low after a given number of bars back.
#
# Author: Kory Gill, @korygill
#
# VERSION HISTORY (sortable date and time (your local time is fine), and your initials
# 20190710-2200-KG - created
#
input length = 13;

#
# Common Variables that may also reduce calls to server
#
def vClose = close;
def vLow = low;
def vHigh = high;
def nan = double.NaN;

#
# Logic
#
def currentBarNumber = if !IsNaN(vClose) then BarNumber() else nan;
def lastBarNumber = HighestAll(currentBarNumber);
def lookbackBar = lastBarNumber - length + 1;
def doPlot = if currentBarNumber >= lookbackBar then 1 else 0;

def mostRecentHigh = CompoundValue(1, if doPlot && vHigh > mostRecentHigh[1] then vHigh else mostRecentHigh[1],double.NEGATIVE_INFINITY);
def highBarNumber = CompoundValue(1, if doPlot && vHIgh > mostRecentHigh[1] then currentBarNumber else highBarNumber[1],0);
#plot mrh = if currentBarNumber >= HighestAll(highBarNumber) then mostRecentHigh else nan;
#mrh.SetDefaultColor(Color.GREEN);

def mostRecentLow = CompoundValue(1, if doPlot && vLow < mostRecentLow[1] then vLow else mostRecentLow[1],double.POSITIVE_INFINITY);
def lowBarNumber = CompoundValue(1, if doPlot && vLow < mostRecentLow[1] then currentBarNumber else lowBarNumber[1],0);
#plot mrl = if currentBarNumber >= HighestAll(lowBarNumber) then mostRecentLow else nan;
#mrl.SetDefaultColor(Color.RED);

#
# Visualizations
#
#AddChartBubble(
# currentBarNumber == HighestAll(highBarNumber),
# vHigh,
# "HIGH",
# Color.WHITE,
# yes);

#AddChartBubble(
# currentBarNumber == HighestAll(lowBarNumber),
# vLow,
# "LOW",
# Color.WHITE,
# no);

#AddChartBubble(
# currentBarNumber == lookbackBar,
# (vHigh+vLow)/2,
# length+"\nBar",
# Color.GRAY,
# yes);

#plot bbH = if currentBarNumber == lookbackBar then vHigh + TickSize()*1 else #nan;
#bbH.SetPaintingStrategy(PaintingStrategy.SQUARES);
#bbH.SetDefaultColor(Color.MAGENTA);
#bbH.SetLineWeight(5);
#bbH.HideBubble();

#plot bbL = if currentBarNumber == lookbackBar then vLow - TickSize()*1 else #nan;
#bbL.SetPaintingStrategy(PaintingStrategy.SQUARES);
#bbL.SetDefaultColor(Color.MAGENTA);
#bbL.SetLineWeight(5);
#bbL.HideBubble();

#
# Labels
#
AddLabel(yes,
"mostRecentHigh: " + mostRecentHigh,
Color.Gray);

AddLabel(yes,
"mostRecentLow: " + mostRecentLow,
Color.Gray);

def Retrace= 100*((mostRecentLow-mostRecentHigh)/mostRecentHigh);
AddLAbel(yes,
"PullBack from mostRecentHigh:" + Round(retrace, 2)+ " %",color.GRAY);
 
Solution
A scanner is simply a study that has 1 plot that plots a non-zero value when a condition is true and 0 otherwise. So in your case you might plot1 or true if your "retrace" value is <80% or >20% depending on how you wish to calculate it.
A scanner is simply a study that has 1 plot that plots a non-zero value when a condition is true and 0 otherwise. So in your case you might plot1 or true if your "retrace" value is <80% or >20% depending on how you wish to calculate it.
 
Solution

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
371 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top