- Questions
- Watch Lists
Votes
Answers
Views
Question
0
1
45
asked 2 months ago by Luis
Category:
Watch Lists
Hello Pete, thanks for replying to my earlier post. I'm attaching the code as a text file as requested. I do not want a scanner or a watchlist that filters out stocks etc. All I want is for the same % that this code provides in the Chart Labels, to b...
0
1
63
asked 3 months ago by Corey
Category:
Watch Lists
Hi Pete. I am trying to create a column that simply shows if a stock is above or below the VWAP. If above the VWAP the background color will appear green with a green "1" as the label. If below the VWAP the background color will appear red with a re...
0
1
27
asked 3 months ago by Corey
Category:
Watch Lists
Hello Pete. I was able to create a watchlist column which shows whenever an inside bar occurs using the condition wizard. However, I am having trouble creating a watchlist column that simply shows the color of the current Heiken-Ashi and if the bar i...
0
1
37
asked 3 months ago by Corey
Category:
Watch Lists
Hi Pete. Is there a way to add one more label on the watch list column which states "Strong Reversal" if a red HA candle is followed immediately by a green HA candle with no wick or a green HA candle is immediately followed by a red candle with no wi...
0
1
56
asked 4 months ago by Corey
Category:
Watch Lists
Hi Pete, Please help me with my script attached. The column currently shows if the SMA and MACD are moving in the same direction. If both are increasing the column turns green and states "Long". If both are decreasing the column turns red and states ...
0
1
30
asked 4 months ago by Josh Tran
Category:
Watch Lists
Hello Pete, How are you? in the watchlist section, I added a column to display the simple moving average. I was wondering if it's possible to modify the SMA to display the 30 Day. Currently it's displaying some random simple moving average and I cann...
0
1
43
asked 4 months ago by Luis
Category:
Watch Lists
Hello Pete, I hope you are doing well. I wanted to follow up on the following code you posted for the following request: https://www.hahn-tech.com/ans/above-average-volume-watch-list-column/ input length = 14; plot data = volume > Average(volume, ...
0
1
90
asked 6 months ago by Mike Jones
Category:
Watch Lists
Pete, first thank for your guidance in this community you are extremely helpful. I have a custom column that measures %change from open (below) "PLOT ChangefromOpen = round(100 * (close / open - 1), 2); AssignBackgroundColor(if ChangefromOpen > 0 ...
0
1
87
asked 7 months ago by Tuan Pham
Category:
Watch Lists
Hi Pete, You helped me with the Buying & Selling Pressure scan here: Buying and Selling Pressure Scan - Hahn-Tech, LLC. Can it be tweaked for a custom column showing the pct? I would like Buying to be in Green and Selling in Red like in the pictu...
0
1
76
asked 8 months ago by Wayne Morris
Category:
Watch Lists
I need help adding a counter to waveA watchlist code plot waveA = TTM_Wave().Wave1; AssignBackgroundColor(if waveA >= 0 then if waveA > waveA[1] then color.CYAN else color.BLUE else if waveA < waveA[1] then color.RED else color.YELLOW);