Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
110
views
asked 4 years ago by
Category: Chart Studies
I was up all night trying to create a code which will display the distance amount between my entry price and the 9 ema line on both 5 min chart and 1 minute chart and could not find a way to do that. Any help will be much appreciated..thanks everyone...
0
votes
1
answer
1092
views
asked 4 years ago by
Category: Chart Studies
I would like to draw arbitrary number of line segments on the chart using Thinkscript, but did not find any documentation or function to achieve that. For example, I would like to plot lines between pivot points as shown on the attached chart.
0
votes
1
answer
56
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I am in need of a script which displays some labels right after Nymex opens at 9 am EST as per below if the conditions are met. 1 – If Nymex Open is >= previuos day pit close then label as Nymex Open>P.Day Pit Close 2- If Nymex Open is...
0
votes
1
answer
92
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
204
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, is it posible to plot a line a the  at the high of highest volume bar     thanks.
0
votes
1
answer
101
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
296
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
282
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...