Votes
Answers
Views
Question
0
1
164
asked 5 years ago by [email protected]
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
1
494
asked 5 years ago by Norman Leal
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
1
70
asked 5 years ago by Shaishav Patel
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
1
70
asked 5 years ago by Ben Gollnick
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
1
212
asked 5 years ago by Shaishav Patel
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
1
139
asked 5 years ago by Michael Ray
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
2
201
asked 5 years ago by Gus G
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
1
318
asked 5 years ago by [email protected]
Category:
Alerts and Notifications
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
1
298
asked 5 years ago by 010##101 McD
Category:
Alerts and Notifications
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
1
3215
asked 5 years ago by J Holt
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...