Questions (272)

Votes
Answers
Views
Question
0
votes
1
answer
256
views
asked 5 years ago by
Hello! I was wondering if it was possible to create a scanner that will pick up large option orders, and large option orders relative to the stocks average daily volume?I attached a picture to show a general idea of what I am looking for.
0
votes
1
answer
43
views
asked 5 years ago by
Category: Chart Studies
Hi Pete! Here is what i'm trying to do.  I'm simply trying to get the AccDist value from the date of the 52 weekly low.   I know how to get the AccDist from another post on here (so TYVM). def accDist = TotalSum(volume * CloseLocationValue()); I...
0
votes
1
answer
184
views
asked 5 years ago by
Category: Chart Studies
Thank you very much for your answer on inserting volume numbers above price bars. I used the word "volume" incorrectly - my apologies. How would total "options volume" be represented above a price bar? Thank you again. plot data = Volume; data.SetPai...
0
votes
1
answer
936
views
asked 5 years ago by
Category: Chart Studies
How can I get volume to display above a price candle on any chart? I will use this primarily for SPX but might use it on other charts. Attached is a screenshot that shows the intended result of volume numbers shown in blue above each candle. Thank yo...
0
votes
1
answer
187
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete  and all-  I'm trying to create a HA scan  for  prev 4  candles. The below code works fine..but it does not give the correct results. I know there are some stocks that fit that criterion. ********************************* def C0 = ohlc4; def ...
0
votes
1
answer
369
views
asked 5 years ago by
Category: Stock Scanners
I wish to adapt this a relative volume indicator to a scan but am having trouble converting the plot of the indicator into a functional scan line. I wish to have the scan fire whenever volume in any of the first 3 bars is greater than average over th...
0
votes
1
answer
143
views
asked 5 years ago by
Category: Chart Studies
Hi Pete how are you? is it possible to color yellow all the candles that have 3000000 or more in volume excluding the last candle? thanks in advance for your time.
0
votes
1
answer
189
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete! I'm trying to create a custom study to add to a preexisting scanner to hopefully later get alerts when this new condition is met. So, I'd like to get alerts when any of the stocks that the scan gets has a 1-min bar above 8,000 in volume.  Th...
0
votes
1
answer
94
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete!  Sorry for all the posts on the forum, I hope at least my questions are unique and challenging.  In TOS is it possible to get the close of the candle of the highest volume in the last 10 days (y).  I know you can just use last to get the las...
0
votes
1
answer
245
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I need to determine the hourly relative volume over 60-day period of particular ticker.  Can it be done in TOS? This is what I have so far: def agg = AggregationPeriod.DAY; input length = 61; input offset = 1; plot RVol = Volume (period =...