Votes
Answers
Views
Question
0
1
104
asked 5 years ago by مستر خلف
Category:
Chart Studies
Hi Hahn! Thank you very much for your helpful videos. I would like to know if you could generate an indicator similer like the picture
0
1
82
asked 5 years ago by Palmer Hendricks
Category:
Stock Scanners
The 2, 3, and 4 Day Aggregation Periods are not available in the scanner. Is it possible to add code to a scan to emulate 2, 3, and 4 day agg. periods ? Thank you.
0
1
300
asked 5 years ago by Roscoe Jackson
Category:
Stock Scanners
i Hi PETE Can you change this code into a thinkscirip scan of TOS? Thanks Roscoe nput price = close; input fast_length = 8; input slow_length = 34; input displace = 0; def na = double.nan; plot fastema = ExpAverage(price[-displac...
0
1
122
asked 5 years ago by Tuan Pham
Category:
Stock Scanners
Hi Pete, How do I scan for earnings between two specific dates? Ex: 10/15/19 thru 10/31/19 Thanks again!
0
1
56
asked 5 years ago by M R
Category:
Chart Studies
Hi Pete, I am having an issue with "Value never assigned". Please see attached for a screenshot of the error <pre>input mode = {default Value, Avg, Signal}; input mode_ma = {default Simple, Exponential, Weighted, Wilders, Hull, EHMA, ...
0
1
69
asked 5 years ago by S S
Category:
Watch Lists
Hello Is there any way to create a script that set up condition that if the time is more than 11 Pm volume should be more than 2 million. or I can say after 11PM I need to see only the stock that have volume over 2 million.
0
1
264
asked 5 years ago by Corey
Category:
Watch Lists
Hello Pete. I would like to assign a background color to my watchlist column which will let me know if the current VWAP is greater than or less than the 50 period exponential VWAP moving average. If the VWAP is greater than the 50 period exponentia...
0
2
868
asked 5 years ago by Frank Cunningham
Category:
Chart Studies
Hi Hahn! Thank you very much for your helpful videos. I would like to know if you could generate an indicator displaying Weis Waves Volume and a study chart that displays zigzag lines, the angle of the zigzags and Weis Waves Volume number on the slop...
0
1
71
asked 5 years ago by juan gomez
Category:
Chart Studies
Hi Pete, a question of can I find the indicator private-yieldpriceperfomance of your YouTube video? Thanks Pete
0
1
285
asked 5 years ago by Jesse
Category:
Stock Scanners
input marketClose = 1600; def closeCounter = SecondsTillTime(marketClose); def regSessEnd = closeCounter[-1] == 0; rec priorDayClose = if regSessEnd then close else priorDayClose[1]; def change = ((close-priorDayClose)/priorDayClose)*100; def con1= c...