Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
23
views
asked 3 years ago by
Category: Chart Studies
I want to read in a few external parameters as inputs to a study. What is the best way to do that? These parameters would vary from one stock to another and are generated by an external program. I can add these as inputs, but then I have to manually ...
0
votes
1
answer
82
views
asked 3 years ago by
Category: Chart Studies
Hi Pete, Any chance to write this simple study... Mark with an arrow up the first trading day of the Month when is a Monday or Friday Thank you
0
votes
1
answer
548
views
asked 3 years ago by
Category: Chart Studies
Tags:
Hello Pete, I know it's easy to have ToS display the high of day and low of day bubbles on the chart (Chart setting/ General/...). But is it also possible to display in the bubble the time of day when that high or low occurs?
0
votes
1
answer
162
views
asked 3 years ago by
Category: Chart Studies
Hi, Wondered if you knew if thinkscript to compute a profit target for pips moved. So, in the stocks/futures world, I can do the following to determine a profit move and then I wondered if there is a way to do same with Pips? Thanks, Jennifer def Pro...
0
votes
1
answer
70
views
asked 3 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...
0
votes
1
answer
155
views
asked 3 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
228
views
asked 3 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
261
views
asked 3 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
56
views
asked 3 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
69
views
asked 3 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