Stock Scanners (703)

Votes
Answers
Views
Question
0
votes
1
answer
183
views
asked 4 years ago by
Category: Stock Scanners
Hello Pete as you suggested, I'm posting my question here. I’m looking for the the scan where ( 8,21,34,55,89) exponential moving avg are stacking up on each other (it doesn’t matter which one is on top or down), like they are in very tight range. Ta...
0
votes
1
answer
182
views
asked 2 years ago by
Category: Stock Scanners
Trying to make the following in the code editor: close is greater than or equal to PivotPoints()."PP" and close is less than PivotPoints()."R1 But I am getting the following massage: "com.devexperts.tos.thinkscript.runtime.TooComplexException: The co...
0
votes
1
answer
181
views
asked 4 years ago by
Category: Stock Scanners
Hello Peter, Can you convert this study for me to a scan? input SMAPeriod1 = 20; input SMAPeriod = 50; input price = close; def na = double.nan; plot fastema = ExpAverage(price, SMAPeriod1); plot slowema = Average(price, SMAPeriod); def crossover = i...
0
votes
1
answer
180
views
asked 3 years ago by
Category: Stock Scanners
Is it possible to create a scan for Put credit spreads with the short at XX (i.e., -0.20) delta, and the long X (i.e., 5) points below the short, that will find spreads with a Return on Risk ($X-credit received) > 10%. I will then use filters to s...
0
votes
0
answers
179
views
Be first to answer!
asked 7 years ago by
Category: Stock Scanners
Hi Pete, Please check my Ichimoku scan code below. Is the logic correct? Not sure why it gives me all those errors: def ichiCloudCrossAbove = high[1] < "Span A" and high[1] < "Span B" and close > "Span A" and close > "Span B"; def ichiClo...
0
votes
1
answer
178
views
asked 4 years ago by
Category: Stock Scanners
Is there a script to calculate the percent change from after hours close the prior day to current price the following day? Or thoughts? It only seems to use regular hrs close.
0
votes
1
answer
177
views
asked 6 years ago by
Category: Stock Scanners
Hi Pete, I found the below from another post (How to add a time filter to scan) and I just wanted to confirm that if I only wanted to receive an alert if the condition is reached during the first hour the market is open, would I delete the "and newDa...
0
votes
1
answer
177
views
asked 5 years ago by
Category: Stock Scanners
Hello Pete, I hope all is well. I wanted to know if it was possible to create scan alerts than only trade in the premarket hours and can even send email/ text alerts between 6am and 9:30am est.   Best
0
votes
2
answers
177
views
asked 3 years ago by
Category: Stock Scanners
Hello Pete, Please see attached scanner:   RSI the lowest it has been in the past 250 days MACD the lowest it has been in the past 250 days   The issues I am facing are:   Plot under ##1 works fine by itself. However, when I run ##2 or...
0
votes
1
answer
175
views
asked 5 years ago by
Category: Stock Scanners
Dear Pete, I would like to scan for titles with a relative strength according to Levy (RSL: https://www.tradesignalonline.com/lexicon/view.aspx?id=408&se=levy), meaning current price divided by moving average of the last 27 weeks, bigger than 120...