Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
73
views
asked 6 years ago by
Category: Chart Studies
Hi Pete, I am trying to rewrite the stochastic using a programming language and I noticed that the TOS  stochastic indicator has a K Period and D Period of 10 each. They also have a Slowing period of 3.  I was looking  up the math behind the stochast...
0
votes
1
answer
73
views
asked 2 years ago by
Category: Chart Studies
Hi Hahn, I came across your youtube videos about TOS tutorials and are having a blast. Recently i read an article and saw Bloomberg Terminal has a function of displaying historical chart of an individual strike's Implied volatility since option becam...
0
votes
1
answer
73
views
asked 2 years ago by
Category: Chart Studies
Hi Pete, I have a Thinkscript-specific question. I'm writing a script that uses volume as input and other price data and its upper study. It uses AssignPriceColor and different painting strategies. However, as you know, some symbol doesn't provide vo...
0
votes
1
answer
72
views
asked 6 years ago by
Category: Chart Studies
Hi Peter, I am looking at making better use of your Ichimoku code, but I noticed it doesn't always fire as expected. Specifically, I am looking at the symbol LABD on April 25 to 26. On April 25, I have a continuation buy signal set at 12:30 using a 1...
0
votes
1
answer
72
views
asked 5 years ago by
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
votes
1
answer
72
views
asked 4 years ago by
Category: Chart Studies
I am making a study to compare lows so far I have Def swinglow = if low < low[1] and low < low[2] and low < low[-1] and low < low[-2] then 1 else 0; plot sl = if swinglow then low else double.nan; I want to be able to measure differences ...
0
votes
1
answer
72
views
asked 4 years ago by
Category: Chart Studies
hi pete. i hope you and your family are safe and sound. i want to write a study that adds a line to price automatically. basically like a support line but its attached to the price and moves with it, so every close has a line attached to it that goes...
0
votes
1
answer
72
views
asked 3 years ago by
Category: Chart Studies
Would it be possible to script an indicator to start at a specified time?  For instance, the bollinger bands carry the effect of prior expansion, and lag to show a full squeeze as it forms.  But is it possible to add options to the code to force it t...
1
vote
1
answer
71
views
asked 6 years ago by
Category: Chart Studies
Hi Peter, Quick question. I want PersonPivot points displayed in a label. If I use this statement, the label prints to 4 decimal places when I only want it to 2 decimal places. How do I change the output from say from 99.1234 to 99.12? Thanks in adva...
0
votes
1
answer
71
views
asked 6 years ago by
Category: Chart Studies
I'm setting up a script that displays a buy when the heikin ashi candle is green if the previous is red. And then to sell at the first red candle. However, at the beginning of let's say a 1 year daily chart that starts with a green candle, I will get...