- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
1369
asked 6 years ago by Bernard Bernard
Category:
Chart Studies
Hi, I understand that IDataHolder / array is perhaps the most common data type used in thinkScript. Also I am reading that recursion is a commonly used technique. I know there is support for building functions and loops (fold). With all these, I thou...
0
1
98
asked 6 years ago by Dana Vitale
Category:
Chart Studies
I would like to add lines on the PercentChg study on ToS. I use it to determine change in price on a percentage basis. I use daily and weekly changes. I use it on only a few indexes and individual stocks. What I want to do is add lines to the thi...
0
1
3137
asked 6 years ago by Ryan Sizemore
Category:
Chart Studies
I’m working on adding multiple labels (with or w/o plots) but I want the label itself to say Stacked and turn green if the moving averages are stacked or red if they are not stacked. I’m using 10EMA, 21EMA, 50SMA, 200 SMA. By stacked, I mean the pric...
0
1
110
asked 6 years ago by Finatec Inc
Category:
Chart Studies
Hi, When I plot the value closedLow I count about 16 entries manually. I want a script to count this My code is below and it seems to only count from YTD ie. all the bars from beginning of the year why is that? def closedLow = (high >= close[1] * ...
0
1
99
asked 6 years ago by Circle Zircle
Category:
Chart Studies
Tags:
I need help with some code logic. suppose x is the high and y is the low of an indicator. how do I make a variable true if "close crosses above x" and false when "close crosses below y"? The problem if I use "close crosses above x" is that it will on...
0
1
271
asked 6 years ago by Taj Singh
Category:
Chart Studies
Hi Pete, Ive had a good look through previous postings and although some people have mentioned it, i havnt been able to find a script to work with, hope you can help! Im looking for a study that compares one days intraday volume on say a 5 min chart,...
0
1
165
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
1
58
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
0
185
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
1
145
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...