Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
95
views
asked 4 years ago by
Category: Chart Studies
Hey Pete, Thanks for all your help. I’m looking to use overnight ATR for a broader breakout strategy. I have pieced together a code, but I believe because of the way pre/post market is defined it is inconsistent and only works on intraday charts.  Co...
0
votes
1
answer
95
views
asked 3 years ago by
Category: Chart Studies
This might seem odd, but trying to overcome a limitation of TOS (mixing aggregations). Would it be possible to capture the total volume accumulated at a specific time of day? So, at 11am (or whatever input), return the total volume thus far. My hope ...
0
votes
1
answer
95
views
asked 3 years ago by
Category: Chart Studies
Hi, I copied the following ADX source code from Tradingview but I can't seem to make it work on TOS.  Is there any adjustments that I need to make?  Thank you. It was too long so I'll attach it as an attachment.  
0
votes
1
answer
95
views
asked 2 years ago by
Category: Chart Studies
I am looking for help to create a label that pulls data from a higher buy period. For example, I want to look at the daily chart and have a label that tells me if the StochasticSlow, SlowK is greater than the StochasticSlow, SlowK from the candle be...
0
votes
1
answer
94
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I hope you had a great Thanksgiving. I'm very happy to see that your final Go Fund Me update had a happy ending. Hopefully, you saw my donation. Now to my question. How to add a chart bubble showing the gain/loss in percentage from the previ...
0
votes
1
answer
94
views
asked 3 years ago by
Category: Chart Studies
Hi there ! I use trendline to show me the %chg between 2 points (see attachment). There's a little popup appearing when you 're about to draw trendline, with lot of useful infos. Unfortunately, it is temporary, because it disappears as soon as I pain...
0
votes
1
answer
93
views
asked 6 years ago by
Category: Chart Studies
Hi all I have a question about going backwards through chart data. The below line plots a line across the progressively higher highs over the chart data. rec highs = if isnan(high[1]) then double.nan else if high > highs[1] then high else highs[1]...
0
votes
1
answer
93
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I am trying to scan for relative strength making a new 250 day high. I tried adding the following to the existing relative stength scan: plot BuyDot = if SRatio == Highest(SRatio,250) then high else Double.NaN; This does not provide correct ...
0
votes
1
answer
93
views
asked 3 years ago by
Category: Chart Studies
Hi Pete, Thank you for the great resources. I have a simple script below where I am trying to plot a horizontal line that extends to the right at every cross over signal. def avg1 = MovingAverage(AverageType.SIMPLE, close, 10); def avg2 = MovingAvera...
0
votes
1
answer
93
views
asked 1 year ago by
Category: Chart Studies
In ToS, I have chart studies that have 5,20,50,200 days Moving averages (EMA) with alerts and I have scanner alert that I get notification for 5days crossing over 20days as example! Is there a way I can get the actual number where these crossovers or...