Questions (901)

Votes
Answers
Views
Question
0
votes
1
answer
52
views
asked 5 years ago by
Category: Chart Studies
Hi Pete! In reference to the below thread, could you please help me with adding two labels to the chart. One showing the days its net change is "$1 Days" in green while the other "-$1 Days" in red. https://www.hahn-tech.com/ans/custom-column-showing-...
0
votes
1
answer
52
views
asked 5 years ago by
Category: Stock Scanners
I have a scan I shared with a trading partner, but we are getting different results. The shared scan does not appear to get all the same alerts as I do. Is there a reason for this? If I get 5 alerts for the day, he may only receive three of those. Th...
0
votes
1
answer
51
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, Any chance to create this chart study? Draw arrow up below Bar Low if last trading day of the Month is true   Thank you
0
votes
1
answer
51
views
asked 4 years ago by
Category: Chart Studies
https://www.hahn-tech.com/ans/price-for-a-specified-date/ discusses how to define a price for a previous date using the code def priceAtDate = if GetYYYYMMDD() == 20170103 then close else Double.NaN; That code gives a value only for the single day 20...
0
votes
1
answer
50
views
asked 5 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
49
views
asked 5 months ago by
Category: Watch Lists
Need help removing the rows showing INSIDE ORB, value = 0 (color =yellow/gold). Only need to see above and below ORB (yellow and red colors) See attached ORB code and screenshot of ORB watchlist column
0
votes
1
answer
45
views
asked 5 years ago by
Category: Chart Studies
Is there a way to show a label or bubble with the amount of pips between both bands? #Code: input displace = 0; input length = 20; plot LowerBand = Lowest(low[-displace + 1], length); plot UpperBand = Highest(high[-displace + 1], length);
0
votes
1
answer
44
views
asked 5 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
44
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, When I set up the TF for chart for just a day by inputting start date and end date as same, why does the chart start at 1 AM instead of 12 AM? Any script possible for its solution? Thanks, Shaishav
0
votes
1
answer
40
views
asked 5 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...