Questions (861)

Votes
Answers
Views
Question
0
votes
1
answer
77
views
asked 3 years ago by
Category: Stock Scanners
I have searched the TOS website and all their documentation and even Googled the web, but am unable to figure a way to match a particular set of display columns to different scans that I save. I can't even seem to find a way to save a particular set ...
0
votes
1
answer
77
views
asked 3 years ago by
Category: Chart Studies
Hey Pete, I searched your forums and found this very straightforward code for determining the percent change from the previous day's close. plot percentChange = 100 * (open / close[1] - 1); I am wondering if it can be modified to calculate the close ...
0
votes
1
answer
77
views
asked 3 years ago by
Category: Chart Studies
hello, is it possible to make the rsi have a zero line and range between -100 and 100 instead of 1 to 100... what would i need to do it the calculations to make it range like this?  thanks for any assistance
0
votes
1
answer
77
views
asked 2 years ago by
Category: Chart Studies
Hello, I am wanting to add different lines and bubbles to the chart that match different levels of % change from the previous days close.  An example would be one line at 15% down from the previous days close and another at 17% from the previous days...
0
votes
0
answers
77
views
Be first to answer!
asked 1 year ago by
Category: Watch Lists
I am trying to plot the Gamma Exposure in the Option chain using a custom column. Code below: plot data = if IsPut() then ceil(gamma() * -100 * open_interest()) else ceil(gamma() * 100 * open_interest()); However, it is printing a NaN for both calls ...
0
votes
1
answer
77
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, For those using the daily chart and the default volume settings and style. How can we create an indicator that highlights the current day (today) volume bar yellow.   Best
0
votes
1
answer
76
views
asked 4 years ago by
Category: Stock Scanners
Hey Pete, I'm looking for a scan that can search the minimum percentage of 5% from low to high of each daily candle in the past 5 candles. Note that I'm not looking for accumulative of the last 5 candles but instead each candle has to have a 5% range...
0
votes
1
answer
76
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, Please see the scan screenshot attached below. I need to add a filter in scan, in which I can assign the range to the candle which crosses above the custom study's T3 Moving Average.  For the range, I intend to apply a fixed value that defin...
1
vote
1
answer
76
views
asked 2 years ago by
Category: Chart Studies
Hi Peter. Is it possible to move VALUES_ABOVE and VALUES_BELOW further up or down from the graph?  Or move it sideways?  I've used it on a zig-zag wave showing volume on each wave, but sometimes the values are being overwritten by the graph. uVol.Set...
0
votes
1
answer
76
views
asked 1 year ago by
Category: Watch Lists
Hello Mr. Hahn! Hope you're doing well. I am trying to create a custom column on my scans that shows the ATR(simple) over 14 bars divided by the average price over 14 bars for the respective ticker. Below is the code I came up with, however I cannot ...