Watch Lists (301)

Votes
Answers
Views
Question
0
votes
1
answer
99
views
asked 5 years ago by
Category: Watch Lists
Pete, I'm trying to color text for gap up/down, what am I missing ? plot c = open - close[1]; AssignColor (if open > close then Color.GREEN else Color.RED); Thanks, AJ
0
votes
1
answer
472
views
asked 5 years ago by
Category: Watch Lists
Hi Pete.  I've searched the forum and was not able to locate a post regarding a code to mimic the MACD color in the watchlist background.  If the MACD is above 0 and increasing the color would be green, if above 0 and declining it would be dark green...
1
vote
1
answer
600
views
asked 5 years ago by
Category: Watch Lists
Hello Pete.  Welcome back my friend!  Glad to see you are recovering so well. I wanted to run something by you.  I have a custom study that I use in several custom watchlist columns.  It puts the 1 in the column if the conditions of the study are met...
0
votes
1
answer
207
views
asked 5 years ago by
Category: Watch Lists
hi pete. so glad you feel much better now! i have this indicator(code below) called the accountant written by kumobob. im trying to get the watchlist to turn red when the indicator hits a "sellpoint" and green if the indicator hits a "buypoint". the ...
0
votes
0
answers
538
views
Be first to answer!
asked 5 years ago by
Category: Watch Lists
Hello Pete, I use a lower study called the Waddah study.  Would it be possibe to have a watch list column for this study.  I would like the WL column to be green if the bar is above both lines on chart and red if below.   declare lower; #-------...
0
votes
1
answer
171
views
asked 5 years ago by
Category: Watch Lists
hi pete. i wrote a code that, i was hoping would show on the watchlist the crossover of CCI and CCI average (cross above in green, cross below in red). now my code does that but i cant figure out how to only have it show as the candle closes on the i...
2
votes
1
answer
518
views
asked 5 years ago by
Category: Watch Lists
Could you please help me code for this WL on HULL to give a signal as soon as it changes from down to up or viceversa... for example "UP now" and the next bar just "up". The code I have is the following: input price = close; input length = 20; input ...
1
vote
2
answers
168
views
asked 5 years ago by
Category: Watch Lists
Hi there Pete, I've been dying to figure out how you've colored your Net Change column background. Looking to apply that my columns if possible. Could you teach me how? I figure it's simple, but I can't quite seem to figure it out. I appreciate what ...
0
votes
1
answer
234
views
asked 5 years ago by
Category: Watch Lists
How do I make a ThinkorSwim watchlist column that would let me know when the stock price crosses the MovAvgAdaptive(Close,5,2,30,AMA) in the plus(green) and in the minus(red) direction?
0
votes
1
answer
89
views
asked 5 years ago by
Category: Watch Lists
One more Request: …. In response to my request on Sept. 27 “ How to change value colors on a label”. input SYMB = "/VX"; def VX = close(symbol = SYMB); def O = open (symbol = SYMB); AddLabel(1, "/VX: " + " = " + VX, if VX > O then Color.RED else i...
1 13 14 15