Stock Scanners (703)

Votes
Answers
Views
Question
0
votes
1
answer
139
views
asked 4 years ago by
Category: Stock Scanners
One last question! I've been trying to create a dynamic alert / scan using the default STD_DevChannel study. I want a scan to populate / alert as the price of a symbol crosses either the upper or lower end of the standard deviation channel. 
0
votes
1
answer
96
views
asked 4 years ago by
Category: Stock Scanners
Hello Pete, I'm hoping you can help me with a scan to capture the criteria shown in the chart here. I would like the scan to find stocks that have touched or broken the upper VWAP at least twice, then have dropped through the mid VWAP line. This is a...
0
votes
1
answer
319
views
asked 4 years ago by
Category: Stock Scanners
1) Is there a way to have thinkscript to parse a symbol's thinklog note? OR 2) Is there a way to have thinkscript access the cumulative delta of all the current positions under the symbol?   I use scans on my current positions and alert when I s...
0
votes
1
answer
185
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
145
views
asked 4 years ago by
Category: Stock Scanners
Is it possible to have a scan the puts results on a watchlist but does not remove ticker when criteria from scan is not met? I have a scan that has stocks that move 3-5 days after they meet the criteria from this scan. I would then need to make a new...
0
votes
1
answer
74
views
asked 4 years ago by
Category: Stock Scanners
Trying to create a scan with multiple moving averages within 5 % of each other. I thought I would use min and max of each set to do this but cant get it to work. I see min/max is only for two variables. Is there a command that looks at an array of li...
0
votes
1
answer
141
views
asked 4 years ago by
Category: Stock Scanners
So here is the code i have so far, and i need creating the rest of the criteria   def volumeDollars = Round(volume * hlc3, 0); def newDay = GetDay() <> GetDay()[1]; rec todaysVolumeDollars = if newDay then volumeDollars else todaysVolumeDo...
0
votes
1
answer
266
views
asked 4 years ago by
Category: Stock Scanners
I am lookin to scan say the first hour of the day or just the middle part. Is there any easy way to write this to modify start and end time. I see premarket scans but nothing on this.
0
votes
1
answer
615
views
asked 4 years ago by
Category: Stock Scanners
Hello, I am looking for a scan that scans for stocks that are currently (not previous day candle close) trading above the daily 9ema. An example would be like +1% above the daily 9ema of current price. Current price could be last, ask, bid. The probl...
0
votes
1
answer
133
views
asked 4 years ago by
Category: Stock Scanners
Id like to add a column or study filter to sort options by Net Debit for a covered call. I know you can obtain the underlying stock price with getunderlyingSymbol() but I cant find a way to get the option price for the net debit calculation. There is...