Chart Studies (873)

Votes
Answers
Views
Question
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
251
views
asked 3 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
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
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
160
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
546
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
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
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
377
views
asked 3 years ago by
Category: Chart Studies
Can you help me customize SequenceCounter to make it similiar to Tom Demark's TD-Combo? Thanks! TD Combo TD Combo is better when you have sharp directional moves, because it requires only thirteen price bars from start to finish compared to TD Sequen...
0
votes
1
answer
183
views
asked 3 years ago by
Category: Chart Studies
Tags:
Hi Pete, Wasn't sure if there was a way to code this...can’t figure it out, but maybe because there is no way to do it. I figured out the code (see below) to have a signal generated (as shown in the attached pic) for when 1. The price action closes a...