Chart Studies (884)

Votes
Answers
Views
Question
0
votes
1
answer
2373
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I'm working on creating a Trend Reversal Indicator in Thinkorswim. The parameters are as follows. Would you be able to provide any help? Thanks in advance!   BUY Criteria: 1. Stock is down for multiple days 2. Stock goes below prior day...
0
votes
1
answer
936
views
asked 5 years ago by
Category: Chart Studies
Hey Pete, again a big thank you for all your sharing and I've learnt a few tricks from your sharing. Yesterday I watched a short video https://youtu.be/zf26u-2I1yE?t=225 where the presenter mentioned a combination use of William R and Normalized ATR ...
0
votes
1
answer
247
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I need to determine the hourly relative volume over 60-day period of particular ticker.  Can it be done in TOS? This is what I have so far: def agg = AggregationPeriod.DAY; input length = 61; input offset = 1; plot RVol = Volume (period =...
0
votes
1
answer
589
views
asked 5 years ago by
Category: Chart Studies
Hi Pete. Simple question here. Is it possible on Thinkscript to plot on one chart a Study from another symbol ? Not meaning the H/L/C but a more complex study. An image as an example. I managed to plot your Hi/Low Study Study on the Lower Panel on a ...
0
votes
1
answer
479
views
asked 5 years ago by
Category: Chart Studies
Dear Pete, Hi, I am Jerry, I would like to calculate the slope of 17Days simple moving average. May I ask how can I get the value of the 17Days simple moving average of the day and calculate the slope comparing with the previous day, using the slope ...
0
votes
1
answer
168
views
asked 5 years ago by
Category: Chart Studies
Scan the Elliott wave oscillator in the TOS histogram to select the highest peak of each wave over 70, also place an arrow on the chart. thank you pete
0
votes
1
answer
129
views
asked 5 years ago by
Category: Chart Studies
Hi, I am trying to plot a straight line parallel to the LinearRegChVar (orange line) where it will touch the highest price of a specific period. I'm not quite sure why its not plotting a straight line. Any help would be appreciated! Below is my scrip...
0
votes
1
answer
113
views
asked 5 years ago by
Category: Chart Studies
Hi, the attached script with input "length" defines variable "n" as a function of length and other variables. In follow-on expressions in the script I want to use n's last, most recent value, not values from all its previous bars. I'm not sure how to...
0
votes
1
answer
218
views
asked 5 years ago by
Category: Chart Studies
I'm trying to build a study that would alert when PPS sell signal is triggered within 3 bars and TTM squeeze is true but am not sure how to reference the studies. Thanks in advance
0
votes
1
answer
164
views
asked 5 years ago by
Category: Chart Studies
Hi Peter, this code combination merely plots the the upper symbols 21 day HMA on the lower plot. What am I doing wrong?   declare lower; plot data = close("VIX"); plot maOne = MovingAverage(AverageType.HULL, data, 21);   input price = close...