Stock Scanners (701)

Votes
Answers
Views
Question
1
vote
1
answer
83
views
asked 7 years ago by
Category: Stock Scanners
Hi, To convert a custom scan, we can follow this video: https://www.youtube.com/watch?v=ijRlnhS25s8   Can we convert a non-custom scan to a strategy?   Like what if I wanted to convert the following scan to a strategy that just uses basic p...
1
vote
2
answers
3450
views
asked 7 years ago by
Category: Stock Scanners
Hello everyone! I believe this could be easy but I am having trouble creating/modifying a script/scan that looks for stocks that meet the following criteria. Equities that Gap up, reverse to PDClose AND/OR Gap down, reverse to PDClose. The setup is s...
1
vote
1
answer
313
views
asked 7 years ago by
Category: Stock Scanners
Hello Mr. Hahn, I hope you're doing well, I would like to be able to scan in TOS for equities that are above a 50 level on the Aroon Indicator, the following is the study as presented on thinkorswim.   input length = 25; Assert(length > 0, "'...
1
vote
2
answers
2988
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
597
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
2
answers
128
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
1
answer
1430
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...
1
vote
1
answer
4648
views
asked 6 years ago by
Category: Stock Scanners
I'm trying to put together a scan that will only be run extended hours (pre-market). It will simply compare the current after hours price with the previous trading day close. Here's what I have:   def percent_change = 8.00; def yest_closing_pric...
1
vote
1
answer
661
views
asked 6 years ago by
Category: Stock Scanners
Hi Pete, This for this wonderful site, so much to learn ... cant sleep tonight want to finish all in one day ;) . really nice site and very good job done brother. I was wondering is it possible to make a scanner to find a pattern which makes M or W f...
1
vote
2
answers
523
views
asked 6 years ago by
Category: Stock Scanners
I have the code for a study/scan that will plot/find N bar highs/lows. It works well for plotting/finding instruments that have a N bar high/low in the last N bars. I can't figure out how to modify the code to find the FIRST N bar high/low (in the la...