Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
91
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, downloaded and installed this study Chart_MTF_MACDSTUDY.ts Looks great, one issue is that on my 15 min chart with 60 min and Daily (med, long MTF's)  every time I zoom in using the arrows on the upper chart right axis and then move around ma...
0
votes
1
answer
99
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, is it possible to have a chart label showing the Highest Volume Day on a Daily Chart and How much Volume on that particular day.. thanks.
0
votes
1
answer
293
views
asked 4 years ago by
Category: Chart Studies
So far this is what I Have so far, but it calculates total volume from the open .   #Volume from Open to Intraday High (exclude premarket) def totaldayvolume = volume(period = "DAY"); plot data = if IsNaN(close[-1]) then totaldayvolume else Doub...
0
votes
1
answer
120
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, is it possible to create a study that displays on the chart where you entered and/or exited an option position, like an arrow or some sort of timestamp so you can visually see where you entered an option position? Thanks!
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 ...
0
votes
1
answer
278
views
asked 4 years ago by
Category: Chart Studies
Is there a way to copy/move the objects of a drawing set to the Default?  I ask because the mobile platform only displays the Default drawing set (unless I just don't know how to change it). Re-creating elements from one set to the default set is ted...
0
votes
1
answer
3088
views
asked 4 years ago by
Category: Chart Studies
Pete, Hoping you can help with a chart study to identify volatility contraction patterns (VCPs) as defined by Mark Minervini. The volatility contraction pattern (VCP) is characterized by waves (contractions) where the high - low range gets propressiv...
0
votes
2
answers
171
views
asked 4 years ago by
Category: Chart Studies
Opinions aside on value derived from LinReg studies.. (this is small piece of a larger puzzle) Beginning with LinearRegCh100, we add one line to the bottom. #================================== # TD Ameritrade IP Company, Inc. (c) 2008-2019 # input pr...
0
votes
1
answer
121
views
asked 4 years ago by
Category: Chart Studies
Hello , I’m trying to create a chart label where I can eliminate the exchange part and just show the ticker symbol like it used to be a few years ago. I keep getting this error , but I don’t see how or where the logic is wrong here.. Am I close with ...
0
votes
1
answer
190
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I need help to fix the code to get the arrows and sound alert only after the completion of the candle only. plot buySignal = close > hlc3 [1]; buySignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); buySignal.SetDefaultColor(Col...