Questions (2352)

Votes
Answers
Views
Question
0
votes
1
answer
79
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, Is there a way to highlight new results when doing a scan? Thanks!
0
votes
1
answer
79
views
asked 4 years ago by
Category: Chart Studies
Hi Pete,  I am looking for to add the user defined OHLC into this code? Can you please help? Thank you. input aggregationPeriod = AggregationPeriod.DAY; def highValue = high(period = aggregationPeriod)[1];def lowValue = low(period = aggregationP...
0
votes
1
answer
79
views
asked 4 years ago by
Category: Stock Scanners
The 2, 3, and 4 Day Aggregation Periods are not available in the scanner. Is it possible to add code to a scan to emulate 2, 3, and 4 day agg. periods ? Thank you.
0
votes
1
answer
79
views
asked 4 years ago by
Category: Chart Studies
Hi Guys, I am trying to make an on screen label that shows me the average "Net" movement of the overall intraday chart based off the 1M chart. I am new to thinkscripting and I want to figure out how to make this particular label start counting from 9...
0
votes
1
answer
79
views
asked 2 years ago by
Category: Chart Studies
Hey Hahn, I have been using your high low alert indicator to find entry points in ETFs. Great Job and I find it very useful. To reduce the noise of multiple alerts, I wanted to know if we can add an additional layer of filter in this tool to only sen...
0
votes
1
answer
79
views
asked 2 years ago by
Category: Chart Studies
In TOS I am able to change the Hull Moving Average to be displayed as a columns. Then I adjust the transparency so that they are only slightly visible. This makes it easy to see when the price candles are poking above the HMA.  The columns shade in f...
0
votes
0
answers
79
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
78
views
asked 5 years ago by
Category: Chart Studies
Hello,   I am referencing values from the ProbabilityOfExpiringCone study. <pre> plot UpProbExp = reference ProbabilityOfExpiringCone(period = 5, prob_range = 80).UpProbExp; plot DownProbExp = reference ProbabilityOfExpiringCone(period = 5...
0
votes
1
answer
78
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, Can you suggest a script to mark distribution days on the charts? Distribution days, as defined by Investor's Business Daily, are days where the price declines by more than 0.2% and the day's volume is higher than the previous day. The distr...
1
vote
1
answer
78
views
asked 4 years ago by
Category: Watch Lists
How would I create a custom column in the watchlist that shows each position's net liquidity as a percentage of my overall account net liquidity? Thank you in advance.