Questions (2352)

Votes
Answers
Views
Question
0
votes
1
answer
1277
views
asked 6 years ago by
Category: Watch Lists
Pete Is it possible the create code in Tos that displays in a watch list the number of days until earnings announcement?
0
votes
3
answers
6934
views
asked 6 years ago by
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
128
views
asked 6 years ago by
Category: Stock Scanners
Hello, how can I make a scan for stocks that have a 10% higher ask is than what the current close price is? I was thinking something along these lines... def MinimumAsk = close * 1.1; plot scan = ask >= MinimumAsk ^^ This didn't work.
0
votes
1
answer
520
views
asked 6 years ago by
Category: Watch Lists
Hi, I am not familiar with writing scripts or code. I use the TTM Squeeze with an alert line of 1.5 and was wondering what do I need to change in the script for the Watchlist for the squeeze dots? I attempted by changing the value of the alert line b...
0
votes
1
answer
93
views
asked 6 years ago by
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
2
answers
230
views
asked 6 years ago by
Happy New Year Peter, I need an arrow and sound alert if possible using MovAvgWeighted the specs and examples have been attached. I need the arrow and sound to alert when EMA 5 yellow crosses the other two EMAs 85 and 75 red has to cross through both...
0
votes
5
answers
1016
views
asked 6 years ago by
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
1385
views
asked 6 years ago by
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
738
views
asked 6 years ago by
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
4
answers
1229
views
asked 6 years ago by
Like when the background is red in color and the value is 0. I want an alert firing when value changes to 1 and green background.