- Questions
- Chart Studies
Votes
Answers
Views
Question
0
votes
1
answer
290
views
asked 5 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
votes
1
answer
187
views
asked 5 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...
0
votes
1
answer
90
views
asked 5 years ago by Matthew Zikry
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
197
views
asked 5 years ago by Jennifer Clark
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
685
views
asked 5 years ago by Joy Banerjee
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
98
views
asked 5 years ago by Master Chief
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
33
views
asked 5 years ago by Arnab Paul
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
506
views
asked 5 years ago by spearfishing captain
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
207
views
asked 5 years ago by Ryan Parker
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...
0
votes
1
answer
59
views
asked 5 years ago by Maykel Barcala
Category:
Chart Studies
Hello, It has been a while since I haven't asked a question around here, so I hope that everyone is fine. I have a regular RSI code and I would like to add a horizontal 50 level line just to visualize when the price is around this area. If anybody c...