Reduce # of arrows occuring

Drmoh1800

Member
VIP
My question i wrote very simple for reversal
Def condition lets say
Def uparrow=close>7;
I want to add condtion when close above uparrow
To put buy signal
when i write Close > uparrow i get arrow for every single candle after that
 
Solution
your definition:
Def uparrow=close>7;
Is a true / false statement.
It is saying define the variable uparrow as true when close is greater than 7.
Thus, uparrow will be equal to 1 when true because 1 is the boolean value of a true statement.
When it is false your uparrow equals 0.

So you do see what will happen when you write close > uparrow?
You are saying plot an arrow whenever close is greater than 1.

If you want an arrow on every candle where close is greater than 7 then the code would be:
def uparrow=close>7 ;
plot buysignal = uparrow ;
buysignal..SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_up);
This says, when the boolean value of the buysignal is 1 then plot an arrow pointing up.
This is the end of the...
your definition:
Def uparrow=close>7;
Is a true / false statement.
It is saying define the variable uparrow as true when close is greater than 7.
Thus, uparrow will be equal to 1 when true because 1 is the boolean value of a true statement.
When it is false your uparrow equals 0.

So you do see what will happen when you write close > uparrow?
You are saying plot an arrow whenever close is greater than 1.

If you want an arrow on every candle where close is greater than 7 then the code would be:
def uparrow=close>7 ;
plot buysignal = uparrow ;
buysignal..SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_up);
This says, when the boolean value of the buysignal is 1 then plot an arrow pointing up.
This is the end of the code. Do not add any more statements.

If you want only ONE arrow and you want it to be when the first time the condition is true then the code would be:
def uparrow = close >7 ;
plot buysignal = uparrow and !uparrow[1];
buysignal..SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_up);
this says only plot where the current bar is true and the previous bar was not. Meaning you only want the very 1st time the condition is true. If it is true on subsequent sequential bars, no arrows will print.
again this would be the end of the code.

Hope this helps.
Got more questions, just ask :)
 
Last edited:
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
352 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