Chart Studies (873)

Votes
Answers
Views
Question
0
votes
1
answer
177
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
235
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
456
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
599
views
asked 6 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 ...
0
votes
1
answer
657
views
asked 6 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
321
views
asked 6 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
81
views
asked 6 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
1149
views
asked 6 years ago by
Category: Chart Studies
Hello Hahn,   Is there a way in thinkorswim not to just see volume but number of trades that have happened on the day or the amount of volume in dollars? Best
0
votes
1
answer
104
views
asked 6 years ago by
Category: Chart Studies
Hello Hahn,   I wanted to now how to create a chart study that highlights the volume bars in the daily chart that are over 10 million shares of volume. If volume > 10 million then highlight bar yellow
0
votes
1
answer
55
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I'm trying to find a code to capture a single green candle that opens below both SMA20 and Kijun AND closes above both of those lines in the same day. Thanks