Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
772
views
asked 4 years ago by
Category: Chart Studies
Is it possible to pull charts created in Live Trading account into Simulated Trading fr practice and testing?
0
votes
1
answer
127
views
asked 4 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...
0
votes
1
answer
197
views
asked 4 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
65
views
asked 4 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
90
views
asked 4 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
145
views
asked 4 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
373
views
asked 4 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
419
views
asked 4 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
203
views
asked 4 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
816
views
asked 4 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 ...