Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
80
views
asked 5 years ago by
Category: Chart Studies
So here is the script I'm using on TOS plot sma1 = Average(close, 2); sma1.AssignValueColor(if sma1 > sma1[1] then Color.liME else Color.magENTA); It is a very simple script that colors the 2sma in lime when it's moving up and magenta when it's mo...
0
votes
1
answer
321
views
asked 5 years ago by
Category: Chart Studies
Hey, I've been poking around everywhere to find a relatively simple indicator based on percentage change, but can't find it.  Is there an easy way to have an indicator on lower study that will show the relative strength of a ticker by percent change?...
0
votes
1
answer
653
views
asked 5 years ago by
Category: Chart Studies
Pete: I came cross a confusing def statement in the source code of DarvasBox, a TOS study  . First line def defines "state" with a few alternatives The second line merely indiactes  variable names "upper" and "lower" in the statement without assignin...
0
votes
1
answer
595
views
asked 5 years ago by
Category: Chart Studies
Hello, I am trying to add chart labels for multiple time-frame(15 min, 30 min, hour) on a 5 minute chart. The labels appear only for 5 min and 15 min after I comment out the code for 30 min and 1 hour. If I do not comment out the code for 30 min and ...
1
vote
1
answer
1527
views
asked 5 years ago by
Category: Chart Studies
How do I set an alert in TOS when price touches the bottom VWAP? This would be useful as a good time to know when a stock is oversold and potentially a good buy. For example, I'd like to be alerted when JNUG hits the bottom VWAP at the two points in ...
0
votes
1
answer
452
views
asked 6 years ago by
Category: Chart Studies
Hi Pete i did some searching but did not find an answer to this.  I'm hoping if you could create a code to automatically draw support/resistance lines based off of the daily chart thats being tested multiple times through lows or highs of the daily c...
0
votes
1
answer
234
views
asked 6 years ago by
Category: Chart Studies
The following code will plot Stochastic Full Diff divergence lines on the price bars. However, I would like to be able to see the divergence lines on the Stochastic Full Diff indicator in the sub graph. Yes, I understand that some of the Stochastic F...
0
votes
1
answer
176
views
asked 6 years ago by
Category: Chart Studies
Hi Pete, The ParabolicSAR in TOS platform only has one color dot for buy & sell. How would you modify the code below to have blue dot for buy and red dot for sell? Thank you! # TD Ameritrade IP Company, Inc. (c) 2008-2018 # input accelerationFact...
0
votes
1
answer
123
views
asked 6 years ago by
Category: Chart Studies
Hi Pete, What a crazy week! I hope you are doing well. Thank you for all of the educational resources and content that you provide your audience, its unbelievable! I am trying to make a chart study that will show the percentage move of the last four ...
0
votes
1
answer
404
views
asked 6 years ago by
Category: Chart Studies
Hey Hahn, I'm looking at creating an alert system in TOS that alerts me when heikin ashi candles on a daily chart are green (up) or red (down) and price on a 30-min chart hits the 100-day EMA. I've looked at a few articles on the site here about how ...