Questions (2349)

Votes
Answers
Views
Question
0
votes
1
answer
517
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, Using the code below, how do I set up the scanner to alert with sound when price crosses up 50 or crosses down 50 (it must be a fresh cross though to avoid chops). Please advise. declare lower; input length = 14; input price = close; input a...
0
votes
1
answer
653
views
asked 7 years ago by
Category: Chart Studies
Is there a way to get a script i.e. "script foo {}" to actually plot or change the values of a plot? Is there better documentation than the tos site?
0
votes
2
answers
1990
views
asked 7 years ago by
Category: Chart Studies
Please see attached file. I can't figure out how to have the same RSI as the attached screenshot. Remove level 70 and 30 and just have it colors when crosses line 50. Please advise. Thank you. Editor's note: The title and URL of this post has been ch...
0
votes
1
answer
93
views
asked 7 years ago by
Category: Stock Scanners
Hello Hahn, I am trying to scan for stocks that had a 5% gain and had 200,000 volume on the same day. However, I need to scan for all the stocks that had a 5% on one day and 200,000 volume on that day for the past 3 days. I am having trouble making t...
0
votes
3
answers
167
views
asked 7 years ago by
Category: Stock Scanners
I am trying to find stocks that have 52-week high MACD levels. Editors note: Video link removed. The video was not required to express the context of the question. If you skip to minute 13 of this video you will see why this scanner should be very he...
0
votes
2
answers
245
views
asked 7 years ago by
Category: Strategy Guide
Hi Pete, I was reviewing the ichimoku strategy, is there a way the change the exit from parabolic SAR to ATR trailing stop? I attached a link to the Ichimoku strategy for reference. https://www.hahn-tech.com/thinkorswim-strategy-ichimoku/ Thank you
0
votes
2
answers
67
views
asked 7 years ago by
Category: Watch Lists
Hello, Peter. I watched your video and tried to get this code to work.  I just want it to show on the watchlist "red for valid" or "black for not valid."  Not sure what I am doing wrong here as I keep getting an error.  Thanks in advance! DMA("displa...
0
votes
5
answers
2068
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, just wonder how to define a price for a previous date. Thanks!
0
votes
1
answer
137
views
asked 7 years ago by
Category: Chart Studies
Hello, here is my code: plot edArrow = if energy > 450 and volume > 200000 then energy else Double.NaN; This is on my indicator (which is not a lower study). The problem is that the arrow plots on my volume bar and I want to plot it under my ca...
0
votes
2
answers
363
views
asked 7 years ago by
Category: Chart Studies
Hello Hahn, Real big fan of the site. A lot of the material here has helped me in trading immensely. I've recently run into an issue coding a study using RSI, which I plan to eventually turn into a strategy. Hoping that you might be able to extend me...