Votes
Answers
Views
Question
0
1
141
asked 4 years ago by Eric Larby
Category:
Alerts and Notifications
Thank you for your hard work and willingness to help. I have been trading for 20 years however I have not written any scripts. I am looking for an alert to trigger, with sound, email, and text on Think or Swim when price gets within 1pt of vwap on th...
0
1
306
asked 4 years ago by Matt Frickey
Category:
Strategy Guide
Hello, I would like to autotrade supertrend in thinkorswim. input AtrMult = 1.0; input nATR = 4; input AvgType = AverageType.HULL; input PaintBars = yes; def ATR = MovingAverage(AvgType, TrueRange(high, close, low), nATR); def UP = HL2 + (AtrMult * A...
1
1
145
asked 4 years ago by Max Grand
Category:
Chart Studies
I'm trying to measure the behavior of the first three 5 min bars. If all 3 are higher highs and higher lows, then my bias is bullish for the day. The code is used as a Custom Quote: input StartTime1 = 0930; input EndTime1 = 0935; def h1 = high...
0
1
45
asked 4 years ago by Mardy Gazzo
Category:
Chart Studies
Is it possible to set the studies on a chart to adjust to the time frame? For example, I have a daily chart with studies based on a daily aggregation. When I change the time frame to aggregate by minute, I'd like the studies to atutomatically aggrega...
0
2
60
asked 4 years ago by Kunal M
Category:
Watch Lists
Would appreciate if I could get some help with the custom column counting the days since last triggered Pocket Pivot. I have tried using the recursive count function but I am getting only zeros in the column count. Attached is the TOS thinkscript for...
0
1
126
asked 4 years ago by Bob Boblaw
Category:
Stock Scanners
Hi Pete, I've bee ntrying to create a scan for this condition but either I'm not getting results or getting results are way off in TOS. Much better luck in TradeStation. I know I'm doing something wrong using the condition wizard. This might ne...
0
1
140
asked 4 years ago by Jesse
Category:
Chart Studies
Hi, I am trying to create a study that plots second order pivots (definition and visualization of the study is given in the attached image). Attached is the code that I have written (could not add into description due to length of post) which does no...
1
1
216
asked 4 years ago by John Moore
Category:
Strategy Guide
Ive been playing with a strategy that uses MACD, RSI and VWAP to choose entry and exit points. All of the individual parameters work but I cant figure out how to format the SELL_AUTO statement to choose between 3 different possibilities. The characte...
0
1
155
asked 4 years ago by Scrooge McDuck
Category:
Stock Scanners
I made a multi time frame scan and everything that comes up with I scan is grey, no green or red bars. http://tos.mx/wokaVSa Here's a link to the scan. Example attached as pic.
0
1
256
asked 4 years ago by Retro Nomicon
Category:
Chart Studies
Hi again Mr Hahn, I tried to combine some of your codes together to get a TOS study that would indicate both an "overbought" and "oversold" condition based primarily on your MACD RSI part 2 scan. Sadly it still only indicates the "oversold" conditio...