Questions (272)

Votes
Answers
Views
Question
0
votes
1
answer
181
views
asked 6 years ago by
Hello Pete,  I'm slowly learning thinkscript etc. and have put together a script for a column in watchlists.  It's intensive I know but it works Mostly!  :)  It monitors 5 minutes of volume compared to avgvol.  The part that doesn't work is the alert...
0
votes
1
answer
2910
views
asked 6 years ago by
Category: Watch Lists
i simply want to get rid of decimals in a column for watchlist or scan for volume avg.  I've been told there is no way to convert the following code to an integer other than to use an addlabel which would prevent it from sorting on that column.  Is t...
0
votes
1
answer
411
views
asked 6 years ago by
Category: Chart Studies
Hello, I’m new to ToS. I found this site literally a few days ago and have learnt quite a bit already. Thanks very much for the obvious hardwork you’ve put in to have all this content on the site. My question is this- is there a way that I can have a...
0
votes
1
answer
341
views
asked 6 years ago by
Category: Stock Scanners
Hello Pete,   So below I have provided the code for a chart label that counts the amount of time a stock has spiked in the past (aka a former runner). My question is, how can we turn this into scan criteria. When using this scanner, I only want ...
0
votes
1
answer
454
views
asked 6 years ago by
Category: Stock Scanners
Hi Pete, Was wondering if it was possible to get a , into the scan results? Lets go with something super basic, plotting the volume from yesterday (image attached) Using the code: plot x = volume() [1]; ^ this gives me the data with a single decimal ...
0
votes
1
answer
312
views
asked 6 years ago by
Category: Stock Scanners
RVOL or RELATIVE VOLUME. I am very interested in installing that indicator in my THINK OR SWIM account. I have contacted TOS, but no luck. I have contacted 2 other parties, but no luck. I entered a code I saw on this website, but no result. Anyway, p...
0
votes
1
answer
216
views
asked 6 years ago by
Hi Pete,   I use VWMA (vol weighted moving average) with the following code: input length = 30; def vwma = Sum(volume * close, length) / Sum(volume, length); plot Value = vwma;   I am getting an error on this line below: input averageType2 = Typ...
0
votes
1
answer
175
views
asked 6 years ago by
Category: Chart Studies
Hello Pete, how do we create a chart indicator study that highlights the highest volume candle on the 1 minute chart? The condition is highlighting the candle with the greatest volume on the 1 minute chart purple. The minimum volume on that candle mu...
0
votes
1
answer
124
views
asked 6 years ago by
Category: Chart Studies
Hi Peter, really great content! Loving everything I've came across so far. One thing I cannot locate is an scanner column / chart study that indicates # of trades. I see many on volume, but nothing that can actually display "1000 trades" or a tick of...
0
votes
1
answer
158
views
asked 6 years ago by
Category: Chart Studies
Hello Pete, How can I make an arrow signal for the 5-minute chart to show only one arrow (either the black OR red arrow) if the totalDollarVolume > $100K to be Color.Black Down Arrow and if the totalDollarVolume > $200K to be Color.Red Down Arr...