- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
98
asked 4 years ago by Jesse
Category:
Chart Studies
Tags:
Hi, below is a basic code meant for the daily chart to calculate a 14 period ATR excluding the last/current bar if there are more than 14 bars on the daily chart and averages the ATR for the total number of candles on the daily chart if there are les...
0
1
180
asked 4 years ago by E J E
Category:
Chart Studies
Hi Pete! I am trying to add a label to my 1-min chart that would show the value of the stochasticSlowD with color indication: green when its uptrending or red when its downtrending. Thank so much for your help!
0
1
49
asked 4 years ago by Tuan Pham
Category:
Chart Studies
Hi Pete! In reference to the below thread, could you please help me with adding two labels to the chart. One showing the days its net change is "$1 Days" in green while the other "-$1 Days" in red. https://www.hahn-tech.com/ans/custom-column-showing-...
0
1
196
asked 4 years ago by Jonny Blevins
Category:
Chart Studies
Hi Pete, I found a tradingview script where someone converted standard RSI line into candlesticks. I have been searching to find out if this is possible on Thinkscript. Heres the pinescript study("RSI CANDLESTICKS") len=input(14,title="RSI LENGTH") c...
0
1
84
asked 4 years ago by Master Chief
Category:
Chart Studies
Hi Pete, i would like to create a study to plot a horizonal ray extended to the right for the Open price at 10am and 11am with Inputs to change time/color/style width. Any help is appreciated. Thank you
0
1
72
asked 4 years ago by Ariel Chao
Category:
Chart Studies
Hi Pete! I have included an attachment for your reference. The right image is what I am looking for. It seems like my plot reverse engineer rsi code is incorrect. This is the code I am using for the left image: plot ema20 = movAvgExponential(close, 2...
0
1
303
asked 4 years ago by David McLean
Category:
Chart Studies
Pete, Do you have a method for drawing a 9ema from each of the following time frames onto a single chart? 1 minute chart 9ema 5 minute chart 9ema 15 minute chart 9ema 60 minute chart 9ema Ideally, I would like to have all of these 9ema's charted onto...
0
1
280
asked 4 years ago by fama TVe
Category:
Chart Studies
Tags:
Hi everyone, I asked this question in one of the tutorials about ToS Ichimoku Scan and MANY THANKS to Pete for making the clarifications / answer. I thought of sharing it here so every0ne can benefit from it. Q: "I noticed that Ichimoku setup in ToS ...
0
1
280
asked 4 years ago by Angus Hamilton
Category:
Chart Studies
Hi, The following should output a value of 75 when the following condition is met: current candle closes above VWAP and 3 previous candles close below VWAP. It doesn't work and I would like to figure out why and correct it. Any help appreciated. dec...
0
1
181
asked 4 years ago by ry s
Category:
Chart Studies
So with the code presented: Def swinghigh = if high > high[1] and high > high[2] and high > high[-1] and high > high[-2] then 1 else 0; Plot sh = if swinghigh then high else double.nan; sh.setstyle(curve.points); With that being said; I a...