Questions (2373)

Votes
Answers
Views
Question
0
votes
1
answer
124
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, is it possible to create a study that displays on the chart where you entered and/or exited an option position, like an arrow or some sort of timestamp so you can visually see where you entered an option position? Thanks!
0
votes
1
answer
62
views
asked 5 years ago by
Hi Pete, I try to set Alert using Study Mode. But not all study are included in the Menu. For Example, Demand index is not on the Alert-Study menu. How do I add the Study to the Alert-study Menu. Thanks
0
votes
1
answer
403
views
asked 5 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
662
views
asked 5 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
300
views
asked 5 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
322
views
asked 5 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
116
views
asked 5 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
99
views
asked 5 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
114
views
asked 5 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
229
views
asked 5 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...