Questions (2351)

Votes
Answers
Views
Question
0
votes
1
answer
1495
views
asked 4 years ago by
Category: Stock Scanners
Is there a way to add a condition to a scan that will eliminate any stock that is HTB or NTB on a desired short purchase in thinkorswim? To put another way, is there a way to add a condition to a scan that will only show stocks that are ETB on a desi...
0
votes
1
answer
94
views
asked 4 years ago by
Category: Strategy Guide
Howdy, I am just learning how to code in thinkscript (no previous experience in coding). But after tinkering with other people's sample scripts coupled with few of my own, I was able to come up with some useful, albeit basic, strategies. So far, I ha...
0
votes
2
answers
179
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I made this indicator https://tos.mx/3H7wbFH and was wondering if it works as intended. I want it to show the % of uptrending blue candles to red candles and I want it to show the average number of bars that the trend will last for. Thank yo...
0
votes
2
answers
222
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete Hope all is well Can you please help me set up a scan. I created a simple moving average (SMA ) crossover arrows. if 10 SMA crossed above the 20 SMA then Yellow arrow, and if the 10 SMA crossed below the 20 SMA then Purple arrow. what I am a ...
0
votes
1
answer
169
views
asked 4 years ago by
Category: Chart Studies
Is there a way to easily add the aggregation period input to any indicator? I tried adding input period to the Rate of Change indicator, but it still only calculates based on the selected chart period.   declare lower; input length = 14; input c...
0
votes
1
answer
379
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I'm new to this. I watched your video on open and hidden divergence. I have a few questions:1. Do Macd and RSi divergence indicators complement each other or one of them is enough? 2. From watching your video I had an impression that a hidde...
0
votes
1
answer
100
views
asked 4 years ago by
Category: Watch Lists
Hello Pete I've been working on a W/L code from your video on a T/K cross for watch list.  I was hoping you could help me finish it...I'm looking to add how many bars ago the cross happened.   Plot myVariable = Ichimoku()."Tenkan" is greater tha...
0
votes
1
answer
27
views
asked 4 years ago by
Category: Watch Lists
On all the securities I have, I have GTC stop orders. Every morning, I look at the TOS watchlist "All account positions" and click on each ticker to bring up a chart so I can see where my stop is in relation to the pre-market bid/ask. This is a tedio...
0
votes
1
answer
94
views
asked 4 years ago by
Category: Watch Lists
I am looking somebody to help me with the following code: ---------------------------------------------------------- plot Bet = volume * 100 * 0.5 * (ask() + bid()); Bet.AssignValueColor(if Bet > 1000000 then Color.Green else if Bet < 300000 th...
0
votes
1
answer
53
views
asked 4 years ago by
Category: Chart Studies
Hi pete, i like to know if is posible to start the calculation of  a study at 9:30 am, but have premarket still visble? thanks! heres the code: def newDay = GetDay() GetDay()[1]; rec runningSumOfHighs = if newDay then high else runningSumOfHighs[1] +...