Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
146
views
asked 5 years ago by
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
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
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
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
350
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
412
views
asked 5 years ago by
Category: Chart Studies
Hello, I'd like to have a study on my intraday chart which automatically plots 2 horizontal lines for the premarket high and low of that stock and keeps those lines even after the market is open. I saw some similar code on this site but it took into ...
0
votes
1
answer
370
views
asked 5 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
70
views
asked 5 years ago by
Category: Chart Studies
Hello I would like to know is it possible to have a script that plot 50 or any SMA don't want to see a line in chart just want a small line attach is the picture. please help if you can.   thanks
0
votes
1
answer
63
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I want to use this code, to show the stats(title and count) when i highlight a candle. However, I do not want the code to actually lot anything on the chart   #Count Trades and price neautralisng declare zerobase; plot Trades = Funda...
0
votes
1
answer
183
views
asked 5 years ago by
Category: Chart Studies
Hahn, I want to kind of change the code of PriceOsc, so that this formula plot PriceOsc = (MovingAverage(averageType, price, fastLength) - MovingAverage(averageType, price, slowLength))/"A"; and I want to input "A" = 1 if price <100 or "A" = 10 if...