Votes
Answers
Views
Question
0
votes
1
answer
196
views
asked 6 years ago by Minh Huynh
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...
0
votes
1
answer
108
views
asked 6 years ago by Doug Doyle
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
426
views
asked 6 years ago by Devel Team
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
177
views
asked 6 years ago by Eric Hughes
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
307
views
asked 6 years ago by Timothy D. Songster Sr.
Category:
Alerts and Notifications
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
532
views
asked 6 years ago by Justin Madigan
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
203
views
asked 6 years ago by kh amin
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
94
views
asked 6 years ago by nick bean
Category:
Alerts and Notifications
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
108
views
asked 6 years ago by Craig Habermehl
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
254
views
asked 6 years ago by Ben Sherman
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...