Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
66
views
asked 4 years ago by
Category: Chart Studies
Hello,   I've been struggling on how to make a study like this... I want to plot the % of green days in the last 10 days as a lower study. I define green day when the close is greater than the open on the same daily chart.   Example: Let's ...
0
votes
1
answer
66
views
asked 4 years ago by
Category: Chart Studies
Hi. I want to import tickers from TOS into excel, and have excel store the daily data in chart form. Ideally, the charts would be auto updated when excel starts up. I've heard this is possible, but it's behond my skill level.  Thank you all.&nbs...
0
votes
1
answer
66
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
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
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
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
64
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I want to use this code, to show the stats(title and count) when i highlight a candle. However, I do not want the code to actually lot anything on the chart   #Count Trades and price neautralisng declare zerobase; plot Trades = Funda...
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...