Votes
Answers
Views
Question
0
votes
1
answer
811
views
asked 6 years ago by Ryan Sizemore
Category:
Chart Studies
Can you help in getting a TTM_Squeeze labels created. Would like to see whatever chart time frame you are on it shows the following: Current Squeeze (yes/no or colored red/green) Squeeze count (how many red dots does it current have if #1 condition i...
0
votes
1
answer
250
views
asked 6 years ago by Craig Habermehl
Category:
Watch Lists
Pete You wrote a EMA cross previously for a watchlist....I use it on a 2hr time frame and was hoping to get how many days ago it crossed to up or downside... def X = MovingAverage(AverageType.EXPONENTIAL, close, 9); def Y = MovingAverage(AverageType....
0
votes
1
answer
573
views
asked 6 years ago by Satish Gupta
Category:
Stock Scanners
Tags:
For TOS, Is there an example of a scan which scans for an event within last (most recent) N bars? If no example, how could I develop a thinkscript for it. For example, I'd like to scan for stocks for which ForceIndex crossed zero from above or below ...
0
votes
1
answer
95
views
asked 6 years ago by Pana Pana
Category:
Chart Studies
Pete, this request is link to a previous post named "Label to display current price of debit spread". The original label has been great for me, so thanks for the time and suggestions. In working with this label for several months, I realize I could e...
0
votes
1
answer
142
views
asked 6 years ago by Byronfern S
Category:
Chart Studies
Hi Pete, how are you, how is your recovery? hey I need a little help i'm trying to write a study but the label displays N/A can you help me please, thanks PS I am not a programmer sorry for the code. def spike = ( close[1] * 130) / 100; def bull = if...
0
votes
1
answer
821
views
asked 6 years ago by Mike Johnson
Category:
Alerts and Notifications
Hi Pete, I took the Marubozu candlestick pattern and created a study with it that includes audio alerts. Problem is the alert goes off constantly while the candles are forming. Is there a way to have the alert go off only after the candle is closed...
0
votes
1
answer
598
views
asked 6 years ago by Pete Hahn
Category:
Chart Studies
Hello, Everyone, I looked at Hahn-Tech's video on Youtube "Thinkorswim RTD Excel" (https://www.youtube.com/watch?v=TWdOYvN9eIs) That is great and easy to get real time data from TOS option chain. Then I use Excel SUM() function to easily get total C...
0
votes
1
answer
99
views
asked 6 years ago by Brook Stafford
Category:
Watch Lists
Hi Pete, Can you explain how I could create a custom column that would should show my current gain/loss that included commission costs for option positions? The end goal is that it will display the amount of actual cash that would enter or leave the...
0
votes
1
answer
174
views
asked 6 years ago by J Holt
Category:
Stock Scanners
I'm trying to build a scan that finds tickers whose last bar (on daily timeframe) is above the ATR by a certain percentage (e.g. 30%). Here is what I've tried: #Wizard text: range is more than #Wizard input: percentage #Wizard text: ATR Input period ...
0
votes
1
answer
105
views
asked 6 years ago by David Foster
Category:
Chart Studies
Hi there, I was interested in sourcing the highest MACD value, since the signal line crosses the zero line. My approach was to count the number of bars since the value was over zero, then use the highest function, with the count as the length. Whil...