Questions (2386)

Votes
Answers
Views
Question
0
votes
1
answer
267
views
asked 6 years ago by
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
1748
views
asked 6 years ago by
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
111
views
Be first to answer!
asked 6 years ago by
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
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
217
views
asked 6 years ago by
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
176
views
asked 6 years ago by
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
207
views
asked 6 years ago by
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
243
views
asked 6 years ago by
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...
1
vote
1
answer
451
views
asked 6 years ago by
Category: Stock Scanners
Hi Pete, I am trying to setup a scan in ToS for when the 4 EMA crosses the 9 EMA (above or below) using Renko candles set to 500 ticks.  I can make the EMA crossovers easily enough with candles but am unsure how to adapt the Condition Wizard to Renko...
0
votes
1
answer
1251
views
asked 6 years ago by
Category: Chart Studies
Hi Hahn i need auto fibonacci retracement from premarket high to premarket low level with the option to change/add additional retracement levels.  Hopefully the request isnt too sophisticated as the previous fibonacci request. Thank you