Questions (2352)

Votes
Answers
Views
Question
0
votes
1
answer
182
views
asked 5 years ago by
Hi Pete,   I use VWMA (vol weighted moving average) with the following code: input length = 30; def vwma = Sum(volume * close, length) / Sum(volume, length); plot Value = vwma;   I am getting an error on this line below: input averageType2 = Typ...
0
votes
1
answer
182
views
asked 5 years ago by
Category: Chart Studies
Hello, I am using a reference to a licensed study "SequenceCounter" to have a horizontal line extended to the right but it only shows at a fixed point. Is there a way to extend the horizontal line to the right? Please see attachment for details and e...
0
votes
1
answer
182
views
asked 4 years ago by
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...
0
votes
1
answer
182
views
asked 4 years ago by
http://tos.mx/aWj6VsA Hi Pete, I have tried everything I know to try and get an alert for when the 'color' on this true momentum indicator changes.  Can you please take a look at it. Thanks for everything you do.  
0
votes
1
answer
182
views
asked 2 years ago by
Category: Stock Scanners
Trying to make the following in the code editor: close is greater than or equal to PivotPoints()."PP" and close is less than PivotPoints()."R1 But I am getting the following massage: "com.devexperts.tos.thinkscript.runtime.TooComplexException: The co...
0
votes
0
answers
181
views
Be first to answer!
asked 6 years ago by
Category: Chart Studies
Hi pete is it possible to change this Fib Fans script to always start at LOW and end at HIGH  on this Fibonacci Fans? input price = close; input high = high; input low = low; input onExpansion = Yes; input Coefficient1 = .382; input Coefficient_2 = ....
3
votes
2
answers
181
views
asked 5 years ago by
Hi Pete, I'm was looking for a study for a 50 EMA cross with alert.  If the candlestick is trading below the 50 EMA  and then the next bar closed above the 50 and alert is triggered....I was love to see it in both directions.
0
votes
1
answer
181
views
asked 4 years ago by
Category: Watch Lists
Hello, I am new to think scripts and this site as well.  I am glad I found such a valuable site. I was wondering how I could add a custom column to my watchlists with color changes whenever a stock price went below and above a moving average like 20 ...
0
votes
1
answer
181
views
asked 4 years ago by
Category: Watch Lists
Hello Again Pete, I was wondering if it is possible to add the custom color signal feature, to a watchlist column I created with the condition wizard. I tried adding the 'assign color' line of code but it won't work (maybe as i haven't defined when t...
0
votes
1
answer
181
views
asked 4 years ago by
Category: Stock Scanners
Hello Peter, Can you convert this study for me to a scan? input SMAPeriod1 = 20; input SMAPeriod = 50; input price = close; def na = double.nan; plot fastema = ExpAverage(price, SMAPeriod1); plot slowema = Average(price, SMAPeriod); def crossover = i...