Questions (2351)

Votes
Answers
Views
Question
0
votes
1
answer
354
views
asked 4 years ago by
Category: Strategy Guide
Thinkorswim has a study on Bollinger upper and lower band crossovers for short and long entries, but not for the Midline. I have been trying to code a strategy on the 4hr chart. Each time a 4 hr bearish candle crosses and closes below the Bollinger B...
0
votes
1
answer
591
views
asked 4 years ago by
Category: Stock Scanners
Why does TOS use Compound Value function in their code for the RelativeStrength Study instead of a simple code as follows: def rStrength = close/close("SPX") ; Plot ans = rStrength;  
0
votes
1
answer
251
views
asked 4 years ago by
I use a range bar chart for analysis. I also use volume as a large part of my analysis. However on a range bar chart volume is difficult to compare because the time between bars is always changing. Therefore I wish to divide volume by the Sierra indi...
0
votes
1
answer
296
views
asked 4 years ago by
Category: Chart Studies
So far this is what I Have so far, but it calculates total volume from the open .   #Volume from Open to Intraday High (exclude premarket) def totaldayvolume = volume(period = "DAY"); plot data = if IsNaN(close[-1]) then totaldayvolume else Doub...
1
vote
1
answer
113
views
asked 4 years ago by
Category: Stock Scanners
Hey Pete, Happy New Year. Thanks for your video and the code on using Ichimoku to scan stocks -- https://www.youtube.com/watch?v=i8U6KqBMmGM . I was able to get the scan to trigger using TOS. The scan shows correctly for stocks as per the daily chart...
0
votes
1
answer
97
views
asked 4 years ago by
I need an alert for when MACD 2 period value line crosses MACD 12 period value line. Thanks
0
votes
1
answer
101
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, is it possible to have a chart label showing the Highest Volume Day on a Daily Chart and How much Volume on that particular day.. thanks.
1
vote
1
answer
214
views
asked 4 years ago by
Category: Stock Scanners
How would you write this custom scanner?  I need a scan that is based on two minute interval.  I need the 20SMA above the 200SMA and the close above the 20SMA.  Then I need pattern of Green, Red, Green or Green, Red, Red, Green.  Could you help me wi...
0
votes
1
answer
209
views
asked 4 years ago by
Hi Mr. Hahn, I hope you are doing well. I wanted to ask if you could help me out with a script that could be applied to different time frames of a stock that would send an alert every time a price or candle crosses above/below a certain moving averag...
0
votes
2
answers
953
views
asked 4 years ago by
Category: Watch Lists
I have used RTD frequently to fetch price data into my Excel Watchlist,  Today I created a Scan in ToS and named the results as a Watchlist which I pasted into the Excel Symbol column, but the price column using =RTD("tos.rtd",,"MARK",TEXT(UPPER...