Votes
Answers
Views
Question
0
votes
1
answer
158
views
asked 5 years ago by Byronfern S
Category:
Chart Studies
Hi Pete, is it possible to create a study that plot the gap down levels automatically, with an input for percent gap down and an input for volume for the day of the gap down, if possible to show only the last gap down, can you help me please? Thanks!
0
votes
1
answer
360
views
asked 5 years ago by Jordan Anth
Category:
Chart Studies
Hi, Is there a way to convert the TC2000 code into thinkscript for the Kaufman Efficiency Ratio? The scale range is from -100 to +100. Thanks. Here is the info on it from TC2000 https://help.tc2000.com/m/69404/l/749623-kaufman-efficiency-ratio
0
votes
1
answer
306
views
asked 5 years ago by dharmendra kumar
Category:
Strategy Guide
Hi, TOS, is it possible to code a conditional order based on multiple time frame. Like if daily ema cross and hourly ema cross in favor then go long on a ema cross on a 5min chart. Thanks in advance.
0
votes
1
answer
53
views
asked 5 years ago by Samuel Davis
Category:
Stock Scanners
Sorry about the earlier incorrect format. I am interested in a scan for the following: Today’s Close>Open and Today’s volume < Yesterday’s volume Thank you
0
votes
1
answer
486
views
asked 5 years ago by Caleb Curtis
Category:
Strategy Guide
Hi Pete, Begginer with Thinkcript here. I'm wondering if I am missing something. It seems like there should be a simple Thinkscript function that returns the number of trades executed by given strategy? I'm looking to build quick graphic feedback on ...
0
votes
1
answer
137
views
asked 5 years ago by Shink Zhon
Category:
Chart Studies
Happy Thanksgiving Again! How do I use AddVerticalLine to plot a vertical line every X bars or X time (minutes, hours, days, weeks, etc) for instance? I would like to customize input bars and input time (because they can differ) and have vert...
0
votes
1
answer
83
views
asked 5 years ago by Michelle Poll
Category:
Watch Lists
I have added the code to the watchlist, but the colors that show up on the watchlist do not coincide with the squeeze indicator on the charts. I watched 2 different videos from Hahn-tech, one has the cold ending in Green and the other ending in Yello...
0
votes
1
answer
138
views
asked 5 years ago by Chandra Baskurama
Category:
Strategy Guide
hi Pete, its possible to create an alert on "break of trendline" by right clicking on the trendline. Is there a way (study or script) to create an order on break of trendline? Perhaps a Stop that triggers when broken? If not, any way for the Aler...
0
votes
1
answer
153
views
asked 5 years ago by anthony tremarco
Category:
Stock Scanners
Here is the script below that I would like to set a scan for when the stock is on an uptrend and then another scan for when the stock is in a downtrend. Is this even possible? input price = close; input reversalAmount = 8.0; input showBubbles = no; i...
0
votes
1
answer
146
views
asked 5 years ago by [email protected]
Category:
Stock Scanners
Tags:
Previously in Stochastic MACD scan the line of code: DownSignal = if downK or downD then OverBought else Double.NaN; How do I add one more condition to include in the scan the value of angle between %K & %D. Trigonometric function like Tan Theta?...