Votes
Answers
Views
Question
0
1
310
asked 5 years ago by 010##101 McD
Category:
Alerts and Notifications
Hello I use this Outside bar reversal study: input aggregationPeriod = AggregationPeriod.HOUR; input showOnlyLastPeriod = no; declare once_per_bar; input BarMultiplier = 1.25; input BarsBack = 50; def MyCandleSize = (high - low); def AverageCandle = ...
0
1
3273
asked 5 years ago by J Holt
Category:
Chart Studies
Pete, Hoping you can help with a chart study to identify volatility contraction patterns (VCPs) as defined by Mark Minervini. The volatility contraction pattern (VCP) is characterized by waves (contractions) where the high - low range gets propressiv...
0
1
155
asked 5 years ago by [email protected]
Category:
Strategy Guide
I have tried to code PSAR_LE and PSAR_SE based on the ParabolicSARCrossover Study. However, when it plots on the chart, the entire chart data gets compressed. Can you provide the sample code for such a strategy. The ParabolicSARCrossover Code is as f...
0
1
377
asked 5 years ago by Andy Wurst
Category:
Chart Studies
Tags:
Is there a way to copy/move the objects of a drawing set to the Default? I ask because the mobile platform only displays the Default drawing set (unless I just don't know how to change it). Re-creating elements from one set to the default set is ted...
1
1
1170
asked 5 years ago by Brian Boche
Category:
Watch Lists
I have a scanner from a friend that scans for specific options that meet a few criteria and then of course sends them to a watch list. The list has the option specific ticker instead of the underlying stock symbol...for example UBER200207C33 Wha...
0
1
241
asked 5 years ago by Anak Manis
Category:
Alerts and Notifications
Saw your video on Condition Wizard, so I tried to play around, but I'm stuck. So I'm wondering if there is a way to add several studies in the condition wizard? For instance, I want to have a notification that tells me a closing price of a stock has ...
0
1
711
asked 5 years ago by Craig Thompson
Category:
Frequently Asked Questions
Mr. Hahn, Would it possible to write a new code that could be added to the TOS CCI indicator with alert. I would like it to alert with an arrow break-out signal when CCI crosses over or below the overbought line. It currently only alerts when crossin...
0
1
142
asked 5 years ago by Craig Habermehl
Category:
Alerts and Notifications
Pete Could you help with a cloud study...Looking for a lower cloud indicator...If it's above the cloud we get a green dot below the cloud red dot and in the cloud no dot...Also I would like to add Four time frames ex..D,2d,4d.wk...and if all are in a...
0
1
90
asked 5 years ago by Gregory Cottingham
Category:
Chart Studies
I am making a study to compare lows so far I have Def swinglow = if low < low[1] and low < low[2] and low < low[-1] and low < low[-2] then 1 else 0; plot sl = if swinglow then low else double.nan; I want to be able to measure differences ...
0
1
204
asked 5 years ago by Scott S
Category:
Watch Lists
So i have this great scan that you helped me with https://www.hahn-tech.com/ans/percent-change-since-open-scan-tos/ but TOS has no way to show the actual % change since open in the table. TOS only shows % change since yesterdays close, I want to sh...