Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
50
views
asked 4 years ago by
Category: Chart Studies
Is there a way to customize the default VWAP study in TOS so that it calculates the VWAP only using data from the current trading day's market hours? There is a default 'day' option but it will include some of the day before, as well as after/premark...
0
votes
1
answer
55
views
asked 4 years ago by
Category: Chart Studies
Hey all - I was wondering if anyone could help me with a bit of coding for the following: - Price level across whole WEEKLY chart 2% from current weekly open price. If it wasn't too much effort I'd like to have two more variables within the same code...
0
votes
1
answer
161
views
asked 4 years ago by
Category: Chart Studies
Hi Pete. I created a fairly simple script that is actually working and returning the result I had intended. But for future reference for someone working hard at learning how to thinkScript, I was wondering if you wouldn't mind looking at my script an...
0
votes
1
answer
293
views
asked 4 years ago by
Category: Chart Studies
Hi Pete,i have 5 TOS studies for intraday Support Resistance lines (manual input numbers). each day of the week (Mon-Fri) has different lines (thus 5 studies)is there a way to simply add a line on top of each study something similar like hide_on_Frid...
0
votes
1
answer
197
views
asked 4 years ago by
Category: Chart Studies
Hi Pete This indicator was written for TOS  but cannot something that provides the same display. May i know if the attached TOS script can be converted to be used in Tradingview. Thanks Nick
0
votes
1
answer
96
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
0
votes
1
answer
503
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
113
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
338
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
940
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...
1 58 59 60