Chart Studies (879)

Votes
Answers
Views
Question
0
votes
1
answer
172
views
asked 4 years ago by
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
votes
1
answer
47
views
asked 4 years ago by
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
votes
1
answer
185
views
asked 4 years ago by
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
votes
1
answer
80
views
asked 4 years ago by
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
votes
1
answer
70
views
asked 4 years ago by
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
votes
1
answer
292
views
asked 4 years ago by
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
votes
1
answer
267
views
asked 4 years ago by
Category: Chart Studies
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
votes
1
answer
272
views
asked 4 years ago by
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
votes
1
answer
172
views
asked 4 years ago by
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...
0
votes
1
answer
78
views
asked 4 years ago by
Category: Chart Studies
Pretty sure I know the answer to this, and did some searching, but thought to ask to confirm! Is there anyway to copy a label on a chart study to text format / or to export the text? Long story short, I'm tracking a pattern and have various data poin...