- Questions
- Chart Studies
Votes
Answers
Views
Question
0
1
57
asked 6 years ago by Baron Suru
Category:
Chart Studies
Hello, I have the following TOS code: def O = open(period=”DAY”); How can I specify the symbol rather than referencing the symbol in the chart? For example, if the chart is /ES, how can I similarly define VIX daily session open?
0
1
101
asked 6 years ago by Juan Banderas
Category:
Chart Studies
Hello Hahn, I wanted to know if you could create a chart indicator that colored price candles under these conditions. When the close>open (green) When the current candle volume is equal or greater than 100k with an RVI (RelativeVolatilityIndex) &g...
0
1
106
asked 6 years ago by Devel Team
Category:
Chart Studies
Hi Pete Do you have a script for Message & Sound alert when BollingerPercentB Crosses Above or Below the 100 or 0 lines - Please see screenshot PS - I am a past and future Paypal donor and happy to support your great work :-) Many thanks Matthew ...
0
1
58
asked 6 years ago by Reicy
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
0
1
109
asked 6 years ago by Juan Banderas
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
1
1186
asked 6 years ago by Juan Banderas
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
1
86
asked 6 years ago by Francisco Bach
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
1
334
asked 6 years ago by Mark Otter
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
1
670
asked 6 years ago by Arun NY
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
1
627
asked 6 years ago by kh amin
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 ...