Votes
Answers
Views
Question
0
1
79
asked 5 years ago by juan gomez
Category:
Chart Studies
Hi Pete, a question of can I find the indicator private-yieldpriceperfomance of your YouTube video? Thanks Pete
0
1
290
asked 5 years ago by Jesse
Category:
Stock Scanners
input marketClose = 1600; def closeCounter = SecondsTillTime(marketClose); def regSessEnd = closeCounter[-1] == 0; rec priorDayClose = if regSessEnd then close else priorDayClose[1]; def change = ((close-priorDayClose)/priorDayClose)*100; def con1= c...
0
1
733
asked 5 years ago by Josh Fritsch
Category:
Chart Studies
Pete, This is a follow on question to my previous question that in greater detail explains what I am looking to do. The basis behind the request is to eliminate situations as shown in as shown in the pictures, where while the MACD+RSI w...
0
1
113
asked 5 years ago by Robert Totland
Category:
Chart Studies
Hi Pete, I'm wondering if you can create Thinkscript to place a label on my intraday ES chart that shows a daily simple moving average of the $TICK? 8 days for example. Thank you!
0
2
139
asked 5 years ago by Pete Day
Category:
Alerts and Notifications
Hi Pete, I have been trying to improve the scan alert response time and wanted to get your insight. I have found that my alerts for 1hr conditions are coming in a few bars later than I would like. Is there a format that improves this such as breakin...
0
0
169
Be first to answer!
asked 5 years ago by Robert Wu
Category:
Chart Studies
Hi Pete, How do I chart Advance Decline line as a symbol so I can apply technical studies like MACD? I want the current symbol on a chart to be AD line. Robert
0
1
73
asked 5 years ago by Greg Simons Jr
Category:
Strategy Guide
do yo have a script that exits a trade long or short at the end of the day? I would like to add it to a strategy on think or swim
1
1
97
asked 5 years ago by iO Rambo
Category:
Chart Studies
im using a script to track volume from 0400-1600 premarket to end of day not including after hours but it doesnt seem to match with the current volume "def EOD = SecondsFromTime(0400) >= 0 and SecondsFromTime(1600) < 0;" Daily Volume script "de...
0
1
112
asked 5 years ago by iO Rambo
Category:
Chart Studies
I would like to add a vertical line once premarket volume has been rotated once on the lower study Thanks
0
1
964
asked 5 years ago by Yun Tan
Category:
Stock Scanners
Tags:
I want to scan stocks which current volume is greater than twice of last 50 days average. I tried to add this line to scan, plot scan = volume is greater than 2 * VolumeAvg("length" = 50)."Vol"; It runs without error but the scan come back with zero ...