Questions (2349)

Votes
Answers
Views
Question
0
votes
1
answer
206
views
asked 5 years ago by
Category: Chart Studies
Hello! I am new to thinkscript and I am having trouble finding a solution for this. My question is whether or not it is possible to display this value as a % value in the bubble. The bubble displays the gain from the day's open to the day's high. The...
0
votes
1
answer
89
views
asked 5 years ago by
Category: Chart Studies
Hi Pete I was hoping to get an alert added to the LRC code if the price action crosses the upper or lower 2 deviation line...   input price = CLOSE; input length = 38; input beginDate = 0; input beginTime = 0; input numDevDn1 = -1.0; input numDe...
0
votes
1
answer
89
views
asked 5 years ago by
Is it possible to set an alert when rsi is greater than 50 and macd is greater than 0 and the time is not _ _:_4? or _ _: _9? Thanks for your time and help!
0
votes
1
answer
182
views
asked 5 years ago by
Category: Chart Studies
Hello, I am using a reference to a licensed study "SequenceCounter" to have a horizontal line extended to the right but it only shows at a fixed point. Is there a way to extend the horizontal line to the right? Please see attachment for details and e...
0
votes
1
answer
453
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, You were able to code a scan finding the second yellow bar after 2 or more red bars in the TTM Squeeze histogram. Post of reference: https://www.hahn-tech.com/ans/ttm-squeeze-scan-for-second-yellow-bar-after-2-or-more-red-bars/ I tried to sw...
0
votes
1
answer
256
views
asked 5 years ago by
I have tried several standard deviation channels in the MarketWatch -> StudyAlert. I keep getting the error "no such function" for TTM_LRC, StandardDevChannel, LinearRegChVar, etc and none of them work in MarketWatch -> StudyAlert. I even tried...
0
votes
1
answer
155
views
asked 5 years ago by
Category: Stock Scanners
Hello, I am wondering how to scan for agreeing MACD signals, (with 3 time frames , as well as 2) but only if the previous bar in the MTF indicator was in disagreement or was in the red.  Basically trying to scan for the first signal. I have read your...
0
votes
1
answer
391
views
asked 5 years ago by
Category: Stock Scanners
How would I create TOS SCAN RSI UNDER 20 & CLOSE > 200-DAY SMA - Alternate 1: Stocks that have a RSI under 20 for 3 days and a closing price above the 200 SMA Plot scan = (RSIWilder(length = 2) < 20 && RSIWilder(length = 2)[1] < ...
0
votes
1
answer
98
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I am trying to plot a line from the pre-market open price but I only want it to display on the current day. this code works but displays on previous days.  Can you help? #Pre-Market open def day = GetDay(); def PMfirstBar = day != day[1]; de...
0
votes
1
answer
183
views
asked 5 years ago by
Category: Chart Studies
Hahn, I want to kind of change the code of PriceOsc, so that this formula plot PriceOsc = (MovingAverage(averageType, price, fastLength) - MovingAverage(averageType, price, slowLength))/"A"; and I want to input "A" = 1 if price <100 or "A" = 10 if...