Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
115
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
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
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
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!
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
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
146
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
69
views
asked 5 years ago by
Category: Chart Studies
Hello can you help me with the script it shows change during market hours is that possible to have extended hours also show up input SYMB = “SPY”; def AD = close (symbol = SYMB, period = AggregationPeriod.day) – close(symbol = SYMB, period = Aggregat...
0
votes
2
answers
143
views
asked 5 years ago by
Category: Chart Studies
Hi, is there a way to have the ParabolicSAR 1 minute, 5 minute, 15 minute, and 30 minute all on one chart as one study? Also, is there a way to make this a label? Thank you.
0
votes
1
answer
91
views
asked 5 years ago by
Category: Chart Studies
Mr. Hahn: I have worked with a lot of your information and have created this Label. I use this with six different products on a 2 minute chart intraday trading /NQ futures. It was designed to replace another screen full of Charts. Instead of looking ...