Questions (2380)

Votes
Answers
Views
Question
0
votes
2
answers
143
views
asked 5 years ago by
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
votes
0
answers
171
views
Be first to answer!
asked 5 years ago by
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
votes
1
answer
73
views
asked 5 years ago by
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
vote
1
answer
101
views
asked 5 years ago by
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
votes
1
answer
115
views
asked 5 years ago by
Category: Chart Studies
I would like to add a vertical line once premarket volume has been rotated once on the lower study Thanks
0
votes
1
answer
976
views
asked 5 years ago by
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 ...
0
votes
1
answer
61
views
asked 5 years ago by
Hi Pete, Is there a way to display a label on chart indicating a name of the day? Thanks
1
vote
1
answer
675
views
asked 5 years ago by
Category: Strategy Guide
Great resource, keep up the great work! I'm trying to set up a simple study (and to backtest with FloatingPL) to buy whenever there's X (let's assume 3) bars of consecutive lows, on the 3rd consecutive low, I want to buy just before the end of the da...
0
votes
1
answer
85
views
asked 5 years ago by
Category: Chart Studies
Hi Pete,  I am looking for to add the user defined OHLC into this code? Can you please help? Thank you. input aggregationPeriod = AggregationPeriod.DAY; def highValue = high(period = aggregationPeriod)[1];def lowValue = low(period = aggregationP...
0
votes
1
answer
125
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, i have this  existing scan that scan stocks that are trending declare lower; def conditionOne = Average(close, 20) / Average(close, 200) >= 1.1; plot x = conditionOne; but i would like to insert another condition to only show those s...