Questions (2372)

Votes
Answers
Views
Question
0
votes
1
answer
164
views
asked 5 years ago by
Category: Chart Studies
Hi Pete. I was wondering if there is a way to see the expected move for the monthly option expiration on the chart like how this indicator does it for each week. http://tos.mx/wx7EQX This indicator can be found at https://theotrade.com/member-home/me...
0
votes
1
answer
493
views
asked 5 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
68
views
asked 5 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
70
views
asked 5 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
212
views
asked 5 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
137
views
asked 5 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
199
views
asked 5 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
316
views
asked 5 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
297
views
asked 5 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
3210
views
asked 5 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...