Chart Studies (873)

Votes
Answers
Views
Question
1
vote
1
answer
1536
views
asked 6 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
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
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
0
votes
1
answer
96
views
asked 5 years ago by
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
votes
1
answer
96
views
asked 5 years ago by
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
votes
1
answer
49
views
asked 5 years ago by
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?