- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
85
asked 3 years ago by Jay Hattler
Category:
Chart Studies
Is it possible to plot futures options using Thinkscript? For example, the first line below plots an SPX option correctly, but the second line does not produce any output: plot pr1 = close(symbol = ".SPXW220331P4495", pricetype = "MARK"); plot pr2 = ...
0
1
536
asked 3 years ago by S S
Category:
Chart Studies
Hello please can you help me with the this script actually i am looking that it plot line Premarket high And premarket low after 8:00 AM. I want script to ignore anything before 8:00 am
1
1
107
asked 3 years ago by Third Day
Category:
Chart Studies
Hi Peter. Is it possible to move VALUES_ABOVE and VALUES_BELOW further up or down from the graph? Or move it sideways? I've used it on a zig-zag wave showing volume on each wave, but sometimes the values are being overwritten by the graph. uVol.Set...
0
1
701
asked 3 years ago by Michael Becker
Category:
Chart Studies
Tags:
I have a study that shows pullbacks off swing highs and lows. It counts the pullbacks based on a formula and prints a count on the chart at the pullback. The counter works correctly and the pullback number is correct. The bubbles print in color to...
0
1
92
asked 3 years ago by Vineet Singh
Category:
Chart Studies
Hey Hahn, I have been using your high low alert indicator to find entry points in ETFs. Great Job and I find it very useful. To reduce the noise of multiple alerts, I wanted to know if we can add an additional layer of filter in this tool to only sen...
0
1
131
asked 3 years ago by Hollis Kwan
Category:
Chart Studies
Hi Peter, I am trying but having difficulties setting up a 1m EMA line on a 5m chart. Can you help me with this? Thanks
0
1
101
asked 3 years ago by irshad-இர்ஷாத்-ارشاد
Category:
Chart Studies
Need some help in writing a study for incremental volume for each sector, please advise. Here is the code for XLK #Technology input XLK_PCT = 29.13; def XLK_Volume = (volume("XLK") - volume("XLK")[1]) / volume("XLK")[1] * XLK_PCT / 100; ADDLABEL(YES,...
0
1
205
asked 3 years ago by Michael Chokrach
Category:
Chart Studies
Pete, Do you know if it's possible to change the "AddCloud" Color using the Edit Studies Dialog (as opposed to specifying the AddCloud Color in the code)? Example: AddCloud(DataValue1, DataValue2, Color.VIOLET, Color.PINK); I tried to configure this...
0
1
277
asked 3 years ago by Rocky Singh
Category:
Chart Studies
using your post here: https://www.hahn-tech.com/ans/premarket-highlow-label/ Is there a way to add the value on the line and it just carries thru till during the regular hours. For example, if premarket high is 1.10. Is there a way on the line that i...
0
1
75
asked 3 years ago by H K
Category:
Chart Studies
Hi Pete, I'm not getting any luck on creating a label for the current moving candle's open price to high price net price difference Thank you.