Questions (2352)

Votes
Answers
Views
Question
1
vote
1
answer
54
views
asked 5 years ago by
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
108
views
asked 5 years ago by
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
108
views
asked 5 years ago by
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
159
views
Be first to answer!
asked 5 years ago by
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
189
views
asked 5 years ago by
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
127
views
asked 5 years ago by
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...
0
votes
1
answer
333
views
asked 5 years ago by
Category: Watch Lists
Hello, I am trying to add a custom column on a watchlist but I am getting error "expected double". I am not able to figure out what I am doing wrong. Here's the code below.. input vpriceType = PriceType.MARK; plot plot_name; if (GetSymbol() == "EDIT"...
0
votes
1
answer
296
views
asked 5 years ago by
Category: Stock Scanners
Hello there Mr. Hahn, I'm looking to create a simple scan that shows me stocks approaching their 200 day SMA from above or below. Maybe something like the price is 1 or 2 percent away from the 200 SMA from either direction. It seems simple enough but...
0
votes
1
answer
352
views
asked 5 years ago by
Category: Chart Studies
I'm looking to create a custom 30 second time frame for stocks in TOS. Would this be possible?
0
votes
1
answer
103
views
asked 5 years ago by
Category: Stock Scanners
I would like to create a scan to find stocks where price has dropped -10% below the open price.  Thanks Pete!