Chart Studies (879)

Votes
Answers
Views
Question
0
votes
1
answer
52
views
asked 4 years ago by
Category: Chart Studies
Is it possible to create a study that includes horizontal lines that you can click on and drag? Obviously, you can use drawings instead. But my study involves calculations based on these lines. So, I'd like to be able to drag the lines to the locatio...
0
votes
1
answer
274
views
asked 4 years ago by
Category: Chart Studies
Pete,   First off, thank you for all you do. This site is a great resource.   Question about referencing other symbols within TPO or volume profile study. I have tried to reference other symbols but the profile function doesnt seem to want ...
1
vote
1
answer
69
views
asked 4 years ago by
Category: Chart Studies
Hi all, I have a code that checks every bar and display up/down arrow when price crosses EMA. I only want it to show the last two instances instead of every candle on the chart because it is too messy to look at during market hours. What can I add to...
0
votes
1
answer
60
views
asked 4 years ago by
Category: Chart Studies
Hi, is there anyway to fix the plotted line so it's either not showing the day from 2 days ago or removing the angled portion of it? I think the screenshot should help =====code============= input aggregationPeriod = AggregationPeriod.DAY; input leng...
0
votes
1
answer
449
views
asked 4 years ago by
Category: Chart Studies
I want help in adding code to TPO studie to view Total TPO count in profile thinkorswim Total TPO count equal to sum of all horizontalrow value (sum of all tpo) https://ibb.co/J7N89BV like this one https://ibb.co/r6rh25D
0
votes
1
answer
1013
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, Is it possible to add cloud (ie shaded area) between two moving averages per code below? I tried combining them into a single code to have a go at it to no avail. Thank you! Guga ############## input price=close; input offset=0; input length...
0
votes
1
answer
372
views
asked 4 years ago by
Category: Chart Studies
input startDateYyyyMmDd = 20200805; def beyondStartDate = if GetYYYYMMDD() >= startDateYyyyMmDd then 1 else 0; plot VWAP = TotalSum(if beyondStartDate then (((high + low + close) / 3) * volume) else 0) / TotalSum(if beyondStartDate then volume els...
0
votes
1
answer
120
views
asked 4 years ago by
Category: Chart Studies
Is it possible to display the VWAP along the price axis without having it displayed on the chart?  I find the lines to be distracting from other indicators. I am not interested in plotting the outside top and bottom lines.
0
votes
1
answer
569
views
asked 4 years ago by
Category: Chart Studies
Hello,   I am looking to make a study that plots how long (in minutes) from the last 1 minute candle. I am using a 1 minute chart. I think this can be achieved by plotting the difference between the current time and the most recent one minute ca...
0
votes
1
answer
132
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, Could you please help me out with the code below as I’d like to have it plot correctly for normal market hours as well? At the moment it only shows it correctly if extended hours is enabled. Thanks