Chart Studies (870)

Votes
Answers
Views
Question
1
vote
1
answer
577
views
asked 3 years ago by
Category: Chart Studies
Hello Pete! Hope you are doing well! How do I take the VWAP indicator and create a chart label on the top left that says VWAP: "#". I have provided a snippet for your reference. Thank you so much for your help!
0
votes
1
answer
45
views
asked 3 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
233
views
asked 3 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
67
views
asked 3 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
42
views
asked 3 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
409
views
asked 3 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
927
views
asked 3 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
328
views
asked 3 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
110
views
asked 3 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
493
views
asked 3 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...