Votes
Answers
Views
Question
0
votes
1
answer
59
views
asked 6 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
votes
1
answer
288
views
asked 6 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
votes
1
answer
122
views
asked 6 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
votes
1
answer
232
views
asked 6 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...
0
votes
1
answer
423
views
asked 6 years ago by Craig Habermehl
Category:
Stock Scanners
Hello Pete Could you help me do a Parabolic SAR scan on a daily time frame... I'm trying to scan for stocks that the SAR have gone from long/short or short/long on the SAR...Trying to catch the stocks o the first bar... Thanks
0
votes
1
answer
238
views
asked 6 years ago by David Foster
Category:
Stock Scanners
Hi Pete, I'm interested in adding a stock screen that requires all the daily closes of the current week to be below the weekly close of the prior week. I understand that TOS doesn't allow secondary aggregation periods in their scans, but you mention...
0
votes
1
answer
207
views
asked 6 years ago by [email protected]
Category:
Stock Scanners
Good day Pete, and I hope that all is well and finally able to get logged in LinkedIn after months of trying :-)I for sure I know it was never on my end, as all other LI's I use for logings have been fine @ other sites. So now that I can start to get...
0
votes
1
answer
98
views
asked 6 years ago by Shaishav Patel
Category:
Chart Studies
Hi Pete, Is there a feature or can you please make a code to go back to a certain date and time on live chart similar to onDemand? Does OnDemand have regular issues loading charts and mismatch in between current price display on active ladder a...
0
votes
1
answer
340
views
asked 6 years ago by Ni Kola
Category:
Stock Scanners
Been trying for hours, im trying to make a bullish scan but i keep coming up with no results MACD- blue line above the orange within the past 5 days Momentum- above zero within past five days TTM Squeeze- above zero within past 5 days i use th...
0
votes
1
answer
276
views
asked 6 years ago by Shaishav Patel
Category:
Frequently Asked Questions
Hi Pete, I was looking into importing custom wave file into this alert study for the alert to sound different than the four default in TOS. def buy = !IsNaN(PPS().”buySignal”); def sell = !IsNaN(PPS().”SellSignal”); Alert(buy, \"PPS Buy\", Alert.BAR,...