- Questions
- Watch Lists
Votes
Answers
Views
Question
2
1
558
asked 5 years ago by Fernando Berezowsky
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 ...
0
1
194
asked 5 years ago by Destra L
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...
0
0
580
Be first to answer!
asked 5 years ago by Craig Habermehl
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
1
230
asked 5 years ago by Destra L
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 ...
1
1
655
asked 5 years ago by Cully Guidry
Category:
Watch Lists
Tags:
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
1
506
asked 5 years ago by Corey
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...
0
1
106
asked 5 years ago by Freddy Yannucci
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
1
169
asked 5 years ago by Freddy Yannucci
Category:
Watch Lists
Hello Pete, I'm glad your doing well. I'm in need of some programming help, what I've been trying to do but can't seem to get is back round color in columns on my watch list. 1- If last price traded is > PDH Green and conversely if last price tra...
0
1
154
asked 5 years ago by Craig Habermehl
Category:
Watch Lists
Pete I use a chop index for my trading...I would be great to know the stocks that are below 38.2 for the ones That I want to trade....Would it be possible for a watch list column to be green if below 38.2 and red for anything above that... Tha...
0
1
222
asked 5 years ago by Craig Habermehl
Category:
Watch Lists
Pete You wrote a EMA cross previously for a watchlist....I use it on a 2hr time frame and was hoping to get how many days ago it crossed to up or downside... def X = MovingAverage(AverageType.EXPONENTIAL, close, 9); def Y = MovingAverage(AverageType....