Questions (2351)

Votes
Answers
Views
Question
0
votes
1
answer
461
views
asked 4 years ago by
Category: Stock Scanners
Hello Pete I use this formula in TC2000 to scan stocks that are oversold using Williams %R (((MAXH10.1-C1) / (MAXH10.1-MINL10.1)) * -100 <= (-80)) or (((MAXH10.2-C2) / (MAXH10.2-MINL10.2)) * -100 <= (-80)) or (((MAXH10.3-C3) / (MAXH10.3-MINL10....
0
votes
1
answer
61
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, This code idea is taken from your previous solutions. I am not getting the correct values if I select the start time 1800- when future opens. input StartTime = 1800; input EndTime = 859; input StartDate= 20190116; input EndDate = 20190117; i...
0
votes
1
answer
66
views
asked 4 years ago by
Category: Strategy Guide
Im having some issues backtesting a basic ADX-Stochastic strategy. When running it for some reason some of the orders are going through at price of $1. Any help is appreciated. Thanks
0
votes
1
answer
190
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I need help to fix the code to get the arrows and sound alert only after the completion of the candle only. plot buySignal = close > hlc3 [1]; buySignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); buySignal.SetDefaultColor(Col...
0
votes
1
answer
121
views
asked 4 years ago by
Category: Chart Studies
Hello , I’m trying to create a chart label where I can eliminate the exchange part and just show the ticker symbol like it used to be a few years ago. I keep getting this error , but I don’t see how or where the logic is wrong here.. Am I close with ...
0
votes
2
answers
171
views
asked 4 years ago by
Category: Chart Studies
Opinions aside on value derived from LinReg studies.. (this is small piece of a larger puzzle) Beginning with LinearRegCh100, we add one line to the bottom. #================================== # TD Ameritrade IP Company, Inc. (c) 2008-2019 # input pr...
0
votes
1
answer
287
views
asked 4 years ago by
I want to create a study alert based on the ParabolicSARCrossover Study. When I go to "create alerts", I cannot find this study in the menu. Why is that?
0
votes
1
answer
269
views
asked 4 years ago by
Hello I use this Outside bar reversal study: input aggregationPeriod = AggregationPeriod.HOUR; input showOnlyLastPeriod = no; declare once_per_bar; input BarMultiplier = 1.25; input BarsBack = 50; def MyCandleSize = (high - low); def AverageCandle = ...
0
votes
1
answer
3088
views
asked 4 years ago by
Category: Chart Studies
Pete, Hoping you can help with a chart study to identify volatility contraction patterns (VCPs) as defined by Mark Minervini. The volatility contraction pattern (VCP) is characterized by waves (contractions) where the high - low range gets propressiv...
0
votes
1
answer
135
views
asked 4 years ago by
Category: Strategy Guide
I have tried to code PSAR_LE and PSAR_SE based on the ParabolicSARCrossover Study. However, when it plots on the chart, the entire chart data gets compressed. Can you provide the sample code for such a strategy. The ParabolicSARCrossover Code is as f...