Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
74
views
asked 4 years ago by
Category: Chart Studies
Im trying to see if its possible to add a chart label for the highest price of the previous bearish red candle ONLY on the 5 minute chart until another bearish candle forms. Thanks in advance!!!!
0
votes
1
answer
74
views
asked 4 years ago by
Category: Chart Studies
Hello, I am NOT a programmer, but I can work / understand previous code and attempt to build my own (until I get stuck). Thanks for sharing all this knowledge in the site which will really help me improve. I looked for a solution here but couldn't so...
0
votes
1
answer
74
views
asked 2 years ago by
Category: Chart Studies
Greetings Pete, If you have time I'd appreciate your feedback on my code. I hope it's correct. Maybe there is a better way to write it. I created a label that looks at the Ichimoku Chikou, and the closing price (26 days ago), and displays a gray labe...
0
votes
1
answer
73
views
asked 6 years ago by
Category: Chart Studies
Hi Peter, I am looking at making better use of your Ichimoku code, but I noticed it doesn't always fire as expected. Specifically, I am looking at the symbol LABD on April 25 to 26. On April 25, I have a continuation buy signal set at 12:30 using a 1...
0
votes
1
answer
73
views
asked 5 years ago by
Category: Chart Studies
I would like to add lines on the PercentChg study on ToS.  I use it to determine change in price on a percentage basis.  I use daily and weekly changes.  I use it on only a few indexes and individual stocks.  What I want to do is add lines to the thi...
0
votes
1
answer
73
views
asked 4 years ago by
Category: Chart Studies
hi pete. i hope you and your family are safe and sound. i want to write a study that adds a line to price automatically. basically like a support line but its attached to the price and moves with it, so every close has a line attached to it that goes...
0
votes
1
answer
73
views
asked 2 years ago by
Category: Chart Studies
Hi Pete, I have a Thinkscript-specific question. I'm writing a script that uses volume as input and other price data and its upper study. It uses AssignPriceColor and different painting strategies. However, as you know, some symbol doesn't provide vo...
1
vote
1
answer
72
views
asked 6 years ago by
Category: Chart Studies
Hi Peter, Quick question. I want PersonPivot points displayed in a label. If I use this statement, the label prints to 4 decimal places when I only want it to 2 decimal places. How do I change the output from say from 99.1234 to 99.12? Thanks in adva...
0
votes
1
answer
72
views
asked 6 years ago by
Category: Chart Studies
I'm setting up a script that displays a buy when the heikin ashi candle is green if the previous is red. And then to sell at the first red candle. However, at the beginning of let's say a 1 year daily chart that starts with a green candle, I will get...
0
votes
1
answer
72
views
asked 4 years ago by
Category: Chart Studies
I am making a study to compare lows so far I have Def swinglow = if low < low[1] and low < low[2] and low < low[-1] and low < low[-2] then 1 else 0; plot sl = if swinglow then low else double.nan; I want to be able to measure differences ...