- Questions
- Chart Studies
Votes
Answers
Views
Question
0
votes
1
answer
781
views
asked 7 years ago by Kyle Maki
Category:
Chart Studies
Hello Hahn, thank you for your videos. I am using them to teach my teenager the art of stock trading. In ThinkorSwim I am trying to create a scan using RSI + MACD HIstogram but then add a Study Filter for stocks that have a BUY Analyst Rating such as...
0
votes
3
answers
7183
views
asked 7 years ago by Andrew Lane
Category:
Chart Studies
My example is def VAOPerigee= if (AWESOMEOSCILLATOR().AO[0] > AWESOMEOSCILLATOR().AO[1]) && (AWESOMEOSCILLATOR().AO[1]<=AWESOMEOSCILLATOR().AO[2]) && (AWESOMEOSCILLATOR().AO[3] >AWESOMEOSCILLATOR().AO[2]) && AWESOMEO...
0
votes
1
answer
101
views
asked 7 years ago by Zachary Harrison
Category:
Chart Studies
Hi all I have a question about going backwards through chart data. The below line plots a line across the progressively higher highs over the chart data. rec highs = if isnan(high[1]) then double.nan else if high > highs[1] then high else highs[1]...
0
votes
5
answers
1138
views
asked 7 years ago by Gregory Wexler
Category:
Chart Studies
Hello - I'm trying to write a study that connects the lows between 2 or more candles with equivalent lows. I wrote this: plot PatternPlot5 = if (low[-1] == low or low[1] == low,low,DOUBLE.NAN); PatternPlot5.SetPaintingStrategy(PaintingStrategy.LINE_...
0
votes
1
answer
1489
views
asked 7 years ago by Andrew Lane
Category:
Chart Studies
How do we create categories on the Q&A Forum. I feel funny always posting my questions & comments under ScottTrade Migration,seems like I could create a category that would be more fitting, but it is a beginner question. I put in GetTime...
0
votes
2
answers
879
views
asked 7 years ago by Ryan Sizemore
Category:
Chart Studies
A couple questions regarding RSI. I have used the aggregate RSI code to show RSI on an hourly, daily, weekly (attached). My question is, can this be set up to have them all on one plot? If i'm looking at AMZN on hourly, I want to see the daily and we...
0
votes
2
answers
873
views
asked 7 years ago by arik Sheffer
Category:
Chart Studies
Hi Pete, I would like to refer to a previous bar value by using a parameter which is changable (is not constant). But, TOS expects a constant value in the []. How can it be done? For example, lets suppose I would like to go back X bars as the value o...
2
votes
2
answers
1637
views
asked 7 years ago by Justin Matthews
Category:
Chart Studies
Can you provide an example of how to use multiple aggregate time frames in the ThinkScript editor when comparing TTM_Squeeze for W/D/H charts so that an indicator showing one color when all time frames align and a second color when they do not?
0
votes
1
answer
743
views
asked 7 years ago by Webperties.com
Category:
Chart Studies
Hi Pete, I downloaded and installed the Thinkorswim MACD RSI Indicator. I've loaded two occurrences as outlined in your video (https://www.youtube.com/watch?v=lSr-miImv-w) in order to see both the overbought and oversold signals, however, only the ov...
0
votes
1
answer
81
views
asked 7 years ago by Ronald Vaughn
Category:
Chart Studies
How to write this as an expression; Current bar is X% greater or lesser than previous bar. With x being an adjustable input