Questions (864)

Votes
Answers
Views
Question
0
votes
1
answer
25
views
asked 3 years ago by
Category: Chart Studies
Getting "Value never assgined to" on  my variables vSignalCandleClose and vSignalCandleStop. What am I doing wrong? #-----MyIndicator-- def vSignalCandleClose;def vSignalCandleStop; def vEMA = MovingAverage(AverageType.EXPONENTIAL, close, 20);de...
0
votes
1
answer
23
views
asked 4 years ago by
Category: Chart Studies
I want to read in a few external parameters as inputs to a study. What is the best way to do that? These parameters would vary from one stock to another and are generated by an external program. I can add these as inputs, but then I have to manually ...
0
votes
1
answer
23
views
asked 3 months ago by
Category: Strategy Guide
Can we compare multiple FPL in Single Strategy to see which one works better for a particular Stock. Ex, def conditionOne = Average(close, 8) crosses above Average(close, 21); def conditionOneClose = Average(close, 8) crosses below Average(close, 21)...
0
votes
1
answer
23
views
asked 1 month ago by
Category: Strategy Guide
Hey Pete! I was having trouble posting this, so I'm not certain if this is the right section. From your videos, I know recursion is a no-no for Thinkorswim's custom code order conditions. Is there any way to reference today's high of the day without ...
0
votes
1
answer
23
views
asked 1 month ago by
Category: Stock Scanners
I'm having trouble using the wizard building a scan, rather than doing an EOD scan for Daily above avg (50 period) Vol I would like to add this condition to my scan today looking at yesterdays end of day daily volume. The condition wizard is not work...
0
votes
1
answer
22
views
asked 1 year ago by
Category: Watch Lists
Hi Pete, Is it possible to have a R-Squared column to begin calculating each day at 10:00 AM EST then auto update it every X-Time frame I choose? Thanks again!
0
votes
1
answer
22
views
asked 2 weeks ago by
Category: Chart Studies
Hi Pete, How do I show the PVR Rank 1 as bright green, 2 as a lighter green, 3 a lighter red and 4 as bright red on the chart? Thanks!
0
votes
1
answer
21
views
asked 4 years ago by
Category: Stock Scanners
Hello, As part of a larger scan that I'm running in Thinkorswim, I screen for stocks above their 200-day moving average.  An issue that is occurring is the removal of stocks that meet all the other criteria but don't have 200 days of trading data.  I...
0
votes
1
answer
21
views
asked 1 month ago by
Category: Watch Lists
I need help adding a counter to waveA watchlist code plot waveA = TTM_Wave().Wave1; AssignBackgroundColor(if waveA >= 0 then if waveA > waveA[1] then color.CYAN else color.BLUE else if waveA < waveA[1] then color.RED else color.YELLOW);
0
votes
1
answer
21
views
asked 1 week ago by
Category: Stock Scanners
Hi Pete! I need help with this attempt at a scan for buying pressure. The filter is supposed to look for stocks whose daily buying pressure is 30% of the day's volume. Unfortunately, the filter below is turning up too many incorrect returns. Take Ets...