Votes
Answers
Views
Question
0
1
79
asked 5 years ago by Shaishav Patel
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
1
115
asked 5 years ago by Nick Neo
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...
0
1
93
asked 5 years ago by Shaishav Patel
Category:
Chart Studies
Hi Pete, First of all, thank you so much for developing this study. It works very good. I have couple of requests if you can accomodate and make a new study. 1- Is is possible to input the custom time for that particular day in place of overnig...
0
1
103
asked 5 years ago by Jackson Gregory
Category:
Chart Studies
Hello, How could I have the 6:00am - 9:55 time frame pained with a box with the top of the box as the high in that range and the bottom the low of the time range. With that how can you add a dashed line to the right at the high, low and average of t...
0
0
119
Be first to answer!
asked 5 years ago by Ni Kola
Category:
Stock Scanners
I have seen other scanners like trading view that will alert stocks up a certain % within the last 5min or 10min. i was messing around on ToS and cant figure out anything to do with time i want to scan in the last 30mins of the regular trading...
0
1
79
asked 5 years ago by Debanjan Ghosh
Category:
Chart Studies
Tags:
Hi, I was wondering if there is a way to record the open close of the bar on earnings day and then paint the following first bar some color after the earnings day bar which satisfies the following criteria 1) The bar is before the next earnings 2) th...
0
1
43
asked 5 years ago by Destra L
Category:
Chart Studies
alright. so this does what i want but i got one problem left with this. i only want the first and second signal from a row of the same color. so if there is 20 dots in a row, i only want the first 2. how do i do that? thanks a bunch. you have taught ...
0
1
262
asked 5 years ago by Joshua Long
Category:
Stock Scanners
Is it possible to create a custom study where you can see that volume > open interest? Thanks!
0
1
104
asked 5 years ago by laurie jones
Category:
Chart Studies
Tags:
Hi Pete, I am trying to scan for relative strength making a new 250 day high. I tried adding the following to the existing relative stength scan: plot BuyDot = if SRatio == Highest(SRatio,250) then high else Double.NaN; This does not provide correct ...
0
1
215
asked 5 years ago by Brandon Johnson
Category:
Stock Scanners
I'm struggling trying to develop a premarket scanner than behaves differently during different times of day. The scanner should display the current gap from previous day close to current price during premarket hours, while diverting to a normal gap s...