Votes
Answers
Views
Question
0
votes
1
answer
1033
views
asked 6 years ago by Justin Madigan
Category:
Stock Scanners
Hi Pete, Is it possible to scan for the slop of the TTM LRC indicator? Bullish scan = slope of lines is positive; Bearish scan = slope of lines is negative. Thanks Justin
0
votes
1
answer
185
views
asked 6 years ago by PapaAlan
Category:
Alerts and Notifications
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
2926
views
asked 6 years ago by PapaAlan
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
183
views
asked 6 years ago by Kim Tim
Category:
Chart Studies
Hi Pete, How do you add codes for line 50 to WilliamsPercentR (see attached screenshot)? Thanks. # # TD Ameritrade IP Company, Inc. (c) 2007-2019 # declare lower; input length = 10; input overBought = -20; input overSold = -80; def hh = Highest(high,...
1
vote
1
answer
72
views
asked 6 years ago by Mike Dedmonton
Category:
Chart Studies
I currently have 75 Mbs internet speed, and sometimes, chart update stalls or scan list calculations show loading. I can upgrade up to 1 Gbs. Is there any value as far as ThinkOrSwim to upgrading or is the limitation on the server side?
0
votes
1
answer
133
views
asked 6 years ago by El Buendia
Category:
Watch Lists
Tags:
Hello Pete, Is it possible to create a watchlist column using data from an external source? Let us say that we want to import the float value for a corresponding stock from a *.csv document to a watch list. Thanks in advance.
0
votes
1
answer
125
views
asked 6 years ago by S S
Category:
Watch Lists
Hello I would like to know is it possible to create custom column on watchlist that update net change in pre and post mark plot x = close; x.AssignValueColor(if x > 0 then color.UPTICK else if X < 0 then color.DOWNTICK else color.CURRENT); net ...
0
votes
0
answers
205
views
Be first to answer!
asked 6 years ago by Minh Huynh
Category:
Chart Studies
Pete, Can you transfer this code in to thinkscripts? study(title="The Pivot Detector Oscillator, by Giorgos E. Siligardos") Length_MA = input(200, minval=1) Length_RSI = input(14, minval=1) UpBand = input(100, minval=1) DnBand = input(0) MidlleBand =...
0
votes
1
answer
236
views
asked 6 years ago by iO Rambo
Category:
Watch Lists
i have a script here that shows the total amount of *trades being transacted on the ticker per candle. I need to have this on a watchlist that shows the amount of trades. Thanks declare lower; declare zerobase; plot Trades = Fundamental(Fundamental...
0
votes
1
answer
158
views
asked 6 years ago by Pana Pana
Category:
Chart Studies
Hello, I have been trying to merge/combine these 3 indicators in to one indicator. I can successfully plot the STO and RMI, but when adding the DPO it does not plot correctly, it plots in the lower half of the indicator which is not accurate, I belie...