Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
145
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I have the following code which makes 2PM-230PM Candles yellow. My purpose is to see the candles between 2-230PM with specific color which is fulfilled when I am on 15 and 30 TF but not in lower than 15min TF. Another thing is I want to also...
0
votes
1
answer
131
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I am looking for a label either pointing to a specific time line or on the top of chart. input targetTime = 1430; def targetBar = SecondsFromTime(targetTime) == 0; rec targetClose = if targetBar then close else targetClose[1]; plot data = ta...
0
votes
1
answer
34
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I am looking for a script which can show me the gap between EU PDC and EU next day open. I can find out the NY pit close and pit open gap by turning off the extended hours. Something similar I am looking for EU session. I trade CL mainly and...
0
votes
1
answer
74
views
asked 5 years ago by
Category: Chart Studies
Hello, Would it be possible to create a countdown label that starts at 300 seconds and counts down every second that passes, then resets to 300 seconds when it's finished?   Thanks!
1
vote
1
answer
157
views
asked 5 years ago by
Category: Chart Studies
I’ve calculated a variable called "slope", which is a number that can be positive or negative. For each new day I’d like the script to test if the polarity flips (+ to - or - to +), and if so, to indicate that on the chart. I'm not sure how best to d...
0
votes
1
answer
118
views
asked 5 years ago by
Category: Chart Studies
I would like to have a label on top of my chart for outstanding shares of the stock. Can you do this if it is possible? Havent found anything on this website about this. Thanks.
0
votes
1
answer
87
views
asked 5 years ago by
Category: Chart Studies
Hello Pete,   I had a question how do we round values 2 decimal places in the display labels. For example in the volume code below .     def Pre = if SecondsFromTime(100) > 0 and SecondsTillTime(0930) >= 0 then 1 else 0; def isRo...
0
votes
1
answer
114
views
asked 5 years ago by
Category: Chart Studies
I see a post from 3 months ago shows how to do the RSI label. https://www.hahn-tech.com/ans/create-labels-for-rsi-dmi-smi/ I am wondering can you do a code where the RSI shows up next to the label. For example RSI 72.30 or whatever it actually i...
0
votes
1
answer
87
views
asked 5 years ago by
Category: Chart Studies
Mr. Pete, I'm glad you are recovering well. I'm trying to write a script that uses the full stochastic to mark cycle highs and lows. The definition of the high is %D crosses above 45 and then back below 55 and the low is marked by %D crossing below 4...
0
votes
1
answer
99
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, hope you continue to do well in your recovery. A few weeks ago you helped me put pivot highs and lows on my charts using Williams Fractals- thanks again for that. I'd like to do a couple of things with trailing stops using %'s. would there b...