Questions (2351)

Votes
Answers
Views
Question
0
votes
1
answer
80
views
asked 4 years ago by
Category: Chart Studies
->Reposting as previous question code got corrupted I’m checking if the first 5-min bar of the day is the widest range in 5 days and write a Label in a Custom Quote. My code is based on the approach used in another question here. It has the Ext Ho...
0
votes
1
answer
160
views
asked 4 years ago by
Category: Chart Studies
Label with prices based on perfect increase from open Hello Pete, I wanted to know if you create an indicator that auto calculates the price at predefined percent increases from the open price  with the following conditions: The first condition is th...
0
votes
1
answer
129
views
asked 4 years ago by
Category: Stock Scanners
Hello Hahn, I found this code you had written for a scan within 5% of VWAP above or below. Would you be able to tell me how to adjust it to scan for stocks that are below 5% and more? (Essentially stocks that are continuously trending down). I very m...
0
votes
1
answer
134
views
asked 4 years ago by
Category: Chart Studies
Hi Pete! Hope everything is going well for you and your family. I was wondering if you could help me create a chart bubble (on the top left corner of a chart in thinkorswim) to display the 100 hull moving average price. I want to have the HMA price f...
0
votes
1
answer
255
views
asked 4 years ago by
Category: Chart Studies
Tags:
Hi Pete, I have searched the forum on Gap finder and this post came closed to what I was looking for but I am looking for open gaps: https://www.hahn-tech.com/ans/scan-gap-within-last-week/ I've been able to add arrows on my chart that indicate a Gap...
0
votes
0
answers
138
views
Be first to answer!
asked 4 years ago by
Category: Chart Studies
Pete: I want to submit the following chart study code for intraday stock stats. I feel this would be useful for investors as they can see the vital info on their charts. Please pass this on! I have attached the file. Thanks, Matt  
0
votes
1
answer
52
views
asked 4 years ago by
Category: Chart Studies
Hi -can this indicator for line break chart be customized for the number of line breaks? there's no user input - it is defaulted to 3 - also can a scan be created based on when the line breaks from high to low? https://school.stockcharts.com/doku.php...
0
votes
1
answer
98
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, i am having problems getting the TOS scan to find stocks that met these conditions 1. When price close within the defined range 2. When the CCI is below 100 This is the drafted codes, but was unable to get the scan to provide the correct sca...
0
votes
1
answer
129
views
asked 4 years ago by
Thank you for your hard work and willingness to help. I have been trading for 20 years however I have not written any scripts. I am looking for an alert to trigger, with sound, email, and text on Think or Swim when price gets within 1pt of vwap on th...
0
votes
1
answer
289
views
asked 4 years ago by
Category: Strategy Guide
Hello, I would like to autotrade supertrend in thinkorswim. input AtrMult = 1.0; input nATR = 4; input AvgType = AverageType.HULL; input PaintBars = yes; def ATR = MovingAverage(AvgType, TrueRange(high, close, low), nATR); def UP = HL2 + (AtrMult * A...