Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
107
views
asked 2 years ago by
Category: Chart Studies
Hi Pete, I am currently using this code in TOS which you have provided me but can you help me encode this in TradingView as chart script since I am not familiar in the codes in TradingView. I shared you the link of my previous inquiry. https://www.ha...
0
votes
1
answer
56
views
asked 2 years ago by
Category: Chart Studies
Hi, Is it possible to plot the volume value at POC? Eg if POC is $40.2 and 200,000 shares were traded, I want to plot 200,000. Thanks, Prakash
0
votes
1
answer
170
views
asked 2 years ago by
Category: Chart Studies
I'm basically looking to put a white arrow on my daily chart where the high of the first candle passes the previous week high.  THis study doesn't work the way I expected as it's placing a arrow under every candle. # input aggregationPeriod = Aggrega...
0
votes
1
answer
126
views
asked 2 years ago by
Category: Chart Studies
I know you can do an unrealized profit/loss % label but what about a realized one?  i cobbled together a lame attempt using the input function but, of course, that won't work because changing the input for a different symbol changes it for all.  can ...
0
votes
1
answer
57
views
asked 2 years ago by
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.
0
votes
1
answer
210
views
asked 2 years ago by
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
votes
1
answer
110
views
asked 2 years ago by
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
votes
1
answer
83
views
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
votes
1
answer
99
views
asked 2 years ago by
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
votes
1
answer
79
views
asked 2 years ago by
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...