How can I show an arrow from another indicator under a bubble...the bubble blocks the arrow...cand the bubble be made more transparent
# @csricksdds
# you have to move your bubbles up and down so that they clear the arrow as follows
# However, before you add or subtract from the bubbles "price location" (which is the second argument supplied to the bubble by you)
# you have to play with the addition and subtraction numbers. you might need 0.25 for a large
# bar close or 0.10 for a smaller bar close. the #'s 0.1 and 0.25 are arbitrary
# pre-Modification
# AddChartBubble(SignalDown, high, round(close,2)+"\nShort", Color.PINK, yes);
# AddChartBubble(Signalrevbot, low, round(close,2)+"Long", Color.CYAN, no);
# README
AddChartBubble(SignalDown, high+0.04, round(close,2)+"\nShort", Color.PINK, yes);
AddChartBubble(Signalrevbot, low-0.1, round(close,2)+"Long"...
# @csricksdds
# you have to move your bubbles up and down so that they clear the arrow as follows
# However, before you add or subtract from the bubbles "price location" (which is the second argument supplied to the bubble by you)
# you have to play with the addition and subtraction numbers. you might need 0.25 for a large
# bar close or 0.10 for a smaller bar close. the #'s 0.1 and 0.25 are arbitrary
# pre-Modification
# AddChartBubble(SignalDown, high, round(close,2)+"\nShort", Color.PINK, yes);
# AddChartBubble(Signalrevbot, low, round(close,2)+"Long", Color.CYAN, no);
# README
AddChartBubble(SignalDown, high+0.04, round(close,2)+"\nShort", Color.PINK, yes);
AddChartBubble(Signalrevbot, low-0.1, round(close,2)+"Long", Color.CYAN, no);
How can I show an arrow from another indicator under a bubble...the bubble blocks the arrow...cand the bubble be made more transparent
ThanksJavaScript:# @csricksdds # you have to move your bubbles up and down so that they clear the arrow as follows # However, before you add or subtract from the bubbles "price location" (which is the second argument supplied to the bubble by you) # you have to play with the addition and subtraction numbers. you might need 0.25 for a large # bar close or 0.10 for a smaller bar close. the #'s 0.1 and 0.25 are arbitrary # pre-Modification # AddChartBubble(SignalDown, high, round(close,2)+"\nShort", Color.PINK, yes); # AddChartBubble(Signalrevbot, low, round(close,2)+"Long", Color.CYAN, no); # README AddChartBubble(SignalDown, high+0.04, round(close,2)+"\nShort", Color.PINK, yes); AddChartBubble(Signalrevbot, low-0.1, round(close,2)+"Long", Color.CYAN, no);
round(close,2) is to provide a reference as to where the price was @ the time of your signal. The reason round(close,2) was used is to provide uniformity and save space because at times the price is quoted by the dealer at 4 or more fractional spaces to the right.Is there a difference between roundClose,2) and actual close verses round?
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Thread starter | Similar threads | Forum | Replies | Date |
---|---|---|---|---|
Get bubble for % away from an EMA or 52week high | Questions | 0 | ||
T | change chart bubble colors from the indicator settings similar to plot color | Questions | 1 | |
O | Why does this AddChartBubble add a bubble to all the bars? | Questions | 2 | |
S | Add Moving Average Bubble & Line | Questions | 2 | |
F | Bar Counter & Bubble | Questions | 1 |
Start a new thread and receive assistance from our community.
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.
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.