Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
66
views
asked 2 years ago by
Category: Chart Studies
Hi,   I was wondering if it's possible to have a study that plots a line on every whole dollar value on the chart.   Thank you
1
vote
1
answer
66
views
asked 7 months ago by
Category: Chart Studies
When using the TOS VolumeProfile study, is it possible to hide the volume figures? From the shape of the volume profile, it's easy to see which prices had the most volume, so the actual numbers aren't necessary, and just add clutter to the chart. Exa...
1
vote
1
answer
65
views
asked 7 years ago by
Category: Chart Studies
How can I make a simple moving average for two different stocks? Here is an example: Stock1 = AAPL Stock2 =AMZN (closeofstock1 + closeofstock2)/2 (144 + 925)/2 = 534.50 Thanks!  
0
votes
1
answer
65
views
asked 7 years ago by
Category: Chart Studies
Hahn, I have a lower study that plots a number value. How can I color code that value the same color as the candlestick for that day? So if there was a green candlestick on July 27th I need the plot color green. If there was a red candlestick on July...
0
votes
0
answers
65
views
Be first to answer!
asked 5 years ago by
Category: Chart Studies
Hi Pete: I've trying to code the accdist indicator to tell me when it moves off of the high or low. Here is my code declare lower; input length = 5; def CLV = CloseLocationValue(); def spxvol = close("$TVOLSPC") - open("$TVOLSPC"); def rutvol = close...
0
votes
1
answer
65
views
asked 4 years ago by
Category: Chart Studies
This is ToS script that paints Up/Down Arrows. I want to paint only the 5 most recent Bars. Tx # ARROWS input showArrows = yes; plot pUP = sState crosses above 0; pUP.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP); pUP.SetDefaultColor(Color.G...
0
votes
1
answer
65
views
asked 3 years ago by
Category: Chart Studies
Hi Hahn, In the TOS platform in edit studies, one can bring on the advance/decline line for NYSE. I am not able to get a moving average for this indicator or any other indicator, such as the on balance volume indicator.  Is there a code that would he...
0
votes
1
answer
64
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, a question of can I find the indicator private-yieldpriceperfomance of your YouTube video? Thanks Pete
0
votes
1
answer
64
views
asked 4 years ago by
Category: Chart Studies
Hi, the attached script with input "length" defines variable "n" as a function of length and other variables. In follow-on expressions in the script I want to use n's last, most recent value, not values from all its previous bars. I'm not sure how to...
0
votes
1
answer
64
views
asked 4 years ago by
Category: Chart Studies
I do hope my title is sufficient Hi again, I have another question pertaining to my signal line, which is based on various EMA’s  here’s a condition that could trigger the signal line to be “Green” def LongP = close > exp34; Signal line color valu...