10% channel from Price script

TDTOS

Member
I am basically looking for an indicator that plots the + and - 10% compared to the current price on a chart.

I’m pretty sure such an indicator exists on here but tried different search terms with no luck.

If anyone is able to find one here, if you don’t mind linking the thread! Thanks!
 
Solution
It doesn't seem to work. Tried fixing it with my limited thinkscript knowledge but no luck. If your able to look at it, would you be able to have a setting of a static price? So 10% band above or below a fixed input price? Thanks again!

here you go

just a fyi , i think sonnetss108 intended for this,
# Define
inputs input channel Percentage = 10;

to look like this,
# Define inputs
input channelPercentage = 10;

variable names can't have a space in them.
i changed channel_Percentage to include a _ .
i like using an underline to separate descriptive words in variable names.
_ is the only special character allowed in variable names.


Code:
# percent_bands

input channel_Percentage = 10.0;
input top_band_base = close...
Code:
# Define
 inputs input channel Percentage = 10;

# Calculate channel values
def channelWidth = close * channelPercentage / 100;
def channelUpper = high + channelWidth;
def channelLower = low - channelWidth;

# Plot the channel
plot upperChannel = channelUpper;
upperChannel.SetDefaultColor(Color.CYAN);
upperChannel.SetStyle(Curve.SHORT_DASH);

plot lowerChannel = channelLower;
lowerChannel.SetDefaultColor(Color.CYAN);
lowerChannel.SetStyle(Curve.SHORT_DASH);

I saw earlier that someone had requested this... so here you go!
 
Last edited by a moderator:

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

Code:
# Define
 inputs input channel Percentage = 10;

# Calculate channel values
def channelWidth = close * channelPercentage / 100;
def channelUpper = high + channelWidth;
def channelLower = low - channelWidth;

# Plot the channel
plot upperChannel = channelUpper;
upperChannel.SetDefaultColor(Color.CYAN);
upperChannel.SetStyle(Curve.SHORT_DASH);

plot lowerChannel = channelLower;
lowerChannel.SetDefaultColor(Color.CYAN);
lowerChannel.SetStyle(Curve.SHORT_DASH);

I saw earlier that someone had requested this... so here you go!
It doesn't seem to work. Tried fixing it with my limited thinkscript knowledge but no luck. If your able to look at it, would you be able to have a setting of a static price? So 10% band above or below a fixed input price? Thanks again!
 
It doesn't seem to work. Tried fixing it with my limited thinkscript knowledge but no luck. If your able to look at it, would you be able to have a setting of a static price? So 10% band above or below a fixed input price? Thanks again!

here you go

just a fyi , i think sonnetss108 intended for this,
# Define
inputs input channel Percentage = 10;

to look like this,
# Define inputs
input channelPercentage = 10;

variable names can't have a space in them.
i changed channel_Percentage to include a _ .
i like using an underline to separate descriptive words in variable names.
_ is the only special character allowed in variable names.


Code:
# percent_bands

input channel_Percentage = 10.0;
input top_band_base = close;
input bottom_band_base = close;

def channelWidth = close * channel_Percentage/100;
def channelUpper = top_band_base + channelWidth;
def channelLower = bottom_band_base - channelWidth;

plot upperChannel = channelUpper;
upperChannel.SetDefaultColor(Color.CYAN);
upperChannel.SetStyle(Curve.SHORT_DASH);

plot lowerChannel = channelLower;
lowerChannel.SetDefaultColor(Color.CYAN);
lowerChannel.SetStyle(Curve.SHORT_DASH);
#
 
Solution

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
260 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