Questions (2352)

Votes
Answers
Views
Question
1
vote
2
answers
2996
views
asked 7 years ago by
Category: Stock Scanners
Hi, I am new to coding in Think Script. I want to write following 2 scripts a) gapped up and just moved over 5 minute opening range breakout b) premarket active and moved over premarket highs I will use above 2 scripts for intra day scanning I have s...
1
vote
1
answer
601
views
asked 7 years ago by
Category: Stock Scanners
Hello Mr. Hahn, I keep trying to get a scan searching when the dmi + crosses the dmi - input length = 14; input averageType = AverageType.WILDERS; def hiDiff = high - high[1]; def loDiff = low[1] - low; def plusDM = if hiDiff > loDiff and hiDiff &...
1
vote
1
answer
59
views
asked 7 years ago by
Category: Chart Studies
Hello, I am confused on how to go by making this indicator... I need it so that yesterday's high price gets plotted on today's candle. However, I would need that for EVERY candle. For example, a candle from 20 days ago should have a plot from the hig...
1
vote
1
answer
913
views
asked 7 years ago by
Category: Chart Studies
I am looking for the code for J. Welles Wilders ATR Bands.  He uses an ATR time period of 21 days.  The bands are calculated by adding/subtracting a multiple of (3x ATR) to the daily CLOSING price. TOS has STARCBands and I have the STARCBands set wit...
1
vote
2
answers
2300
views
asked 7 years ago by
Category: Strategy Guide
Hi Pete and All, i have a custom study that generates buy and sell signals based on Rsi and MACD and EMAs my problem is when i create an order and Reference the study when the Buy singal is true the order goes off ok the first time and the trade is a...
1
vote
1
answer
192
views
asked 7 years ago by
Category: Watch Lists
Is there a way in TOS to tell quickly what industry and sector a certain stock is from ? Editor's note: The title and URL of this post has been changed to better reflect the context of the question. It has also been moved out of the FAQ's and into th...
1
vote
2
answers
129
views
asked 7 years ago by
Category: Stock Scanners
Hello Pete, whats the best way to scan for stocks that have the following criteria:- Avg. open price for the last 30 days is .30 cents of the Avg. close price. for example . in the last 30 days , the Avg. open price is $15.20 and Avg. close price is ...
1
vote
3
answers
4112
views
asked 7 years ago by
Category: Strategy Guide
Hi Pete, I watched your tutorial on how to do semi-auto orders on tos yesterday. I have a custom studies, which I want to place my conditional order based. But when I followed the step and put below script into New Studies, it just says "expected dou...
1
vote
3
answers
479
views
asked 7 years ago by
Category: Watch Lists
Peter, First, thanks for all the effort you put in to making the Carter's squeeze more widely usable and efficient in TOS. Your work is truly helpful. My question: I am a little unclear as to what the "aggregation" button means when building a custom...
1
vote
1
answer
1433
views
asked 7 years ago by
Category: Stock Scanners
Hello, I am trying to convert this TC2000 scan I use for a 4% breakout scan to be used in the Think Or Swim scanner. Can you take a look at this and let me know what I am doing wrong and need to change? PCF: C >= AVGC10 + (0.8) * SQR((((C - AVGC10...