Votes
Answers
Views
Question
0
votes
1
answer
307
views
asked 6 years ago by Rome Ali
Category:
Stock Scanners
RVOL or RELATIVE VOLUME. I am very interested in installing that indicator in my THINK OR SWIM account. I have contacted TOS, but no luck. I have contacted 2 other parties, but no luck. I entered a code I saw on this website, but no result. Anyway, p...
0
votes
0
answers
30
views
Be first to answer!
asked 6 years ago by חנן מרקו
Category:
Chart Studies
can you give me a direction to do that ? for example, if AAPL then plot EMA21, if AMZN then plot EMA34 otherwise no ploting EMA .
0
votes
1
answer
256
views
asked 6 years ago by nick bean
Category:
Alerts and Notifications
Hey I'm trying to set an alert when WilliamFractal up is true. Using this script in thinkscript "WilliamsFractal("sequence count" = 2).DownFractal is true". When setting up the alert it shows that everything works fine like it should. However when th...
0
votes
1
answer
1712
views
asked 6 years ago by Juan Banderas
Category:
Chart Studies
I currently have thinks it code that plots an arrow when the criteria are met. PatternPlot.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); PatternPlot.SetDefaultColor(GetColor(8)); My only question is can the arrow code be modifyied to place ...
0
votes
0
answers
105
views
Be first to answer!
asked 6 years ago by Mark Lehman
Category:
Stock Scanners
Mr. Hahn, Thank you so much for all the work you've been doing on this website. Since I'm a newbie, I'm trying to start with something simple for a customized scan, but I think I'm doing something wrong. What I'm trying to do is scan for stocks and ...
0
votes
0
answers
68
views
Be first to answer!
asked 6 years ago by Craig Habermehl
Category:
Watch Lists
Pete I was hoping to get a red or green bar in a column when all time frames are in agreement. If there are not just keep it black.. The yellows arrows are in agreement
0
votes
1
answer
209
views
asked 6 years ago by Carol W
Category:
Alerts and Notifications
Hi Pete, I use VWMA (vol weighted moving average) with the following code: input length = 30; def vwma = Sum(volume * close, length) / Sum(volume, length); plot Value = vwma; I am getting an error on this line below: input averageType2 = Typ...
0
votes
1
answer
169
views
asked 6 years ago by Kenise M
Category:
Chart Studies
Hello Pete, how do we create a chart indicator study that highlights the highest volume candle on the 1 minute chart? The condition is highlighting the candle with the greatest volume on the 1 minute chart purple. The minimum volume on that candle mu...
0
votes
1
answer
196
views
asked 6 years ago by Richard Tucek
Category:
Strategy Guide
Hello, Not sure if I am even asking this in the right forum, but if anyone could help with this it would be greatly appreciated. I am trying to setup a contingent order as follows: A buy market order at open that will trigger a 50% sell stoplimit tha...
0
votes
1
answer
236
views
asked 6 years ago by anthony tremarco
Category:
Stock Scanners
I've found a new strategy called the Stiffness Indicator. I'm trying to turn this into a scan but getting rejected at line7:1.Here's the code and you help. input price = close; input length = 60; input averageLength = 100; def avg = Average(price, a...