Questions (2343)

Votes
Answers
Views
Question
0
votes
1
answer
193
views
asked 5 years ago by
Category: Stock Scanners
Hello sir, first off, i appreciate all this information, its highly appreciated. Ive tried repeatedly to figure out how to make a simple after hours scan but nothing ever worked out to match sites with A/H movement [confirmation that i was doing it r...
0
votes
1
answer
115
views
asked 5 years ago by
Category: Chart Studies
Hello Pete, I have some code for a chart label that isn't calculating the sum total correctly for the "number of trades on the day" . The code seems to only be counting for the current 1-minute bar.   I would like it to take the the sum total of...
0
votes
1
answer
146
views
asked 5 years ago by
Category: Stock Scanners
I am trying to write a scan that will locate a stock with the RSI below 5 for day days in a row starting at the close of the current day and going back for five days. plot scan = RSI("length" = 2, "over sold" = 5)."RSI" is less than RSI("length" = 2,...
0
votes
1
answer
310
views
asked 5 years ago by
Category: Chart Studies
Pete I have an auto fibonacci study and was hoping to add the price and the fib level percentage to it.  I would like to have it layed out the way TOS lays it out. input sideline = no; def f11 = 0.236; def f12 = 0.382; def f13 = 0.50; def f14 = 0.618...
0
votes
1
answer
44
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, I would like to add be able to scan for times in which the McClellan Summation Index is greater than or less than the McClellan Summation Index Neutral Level. While TOS will allow me to create that scan, it produces zero results even though ...
0
votes
1
answer
353
views
asked 5 years ago by
Category: Strategy Guide
I have been working with the "Thinkorswim AutoTrade Almost" video and was wondering how the aggration is managed, ie daily, Hourly, 30 minute and so on.
0
votes
1
answer
122
views
asked 5 years ago by
Category: Watch Lists
Hi Pete, big thanks for all the info you provide on the TOS platform as I've found it super helpful. I'm trying to create a watchlist column for an hourly timeframe that shows me the type of candle and whether the price is increasing or decreasing. T...
0
votes
1
answer
173
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I want to know if it's possible to create a "Chart Label" that will display the current/active net price of an option contract, let's say I have a Spread on, and I want to quickly see in the label, what the current Mark/Net Price of the spre...
0
votes
1
answer
108
views
asked 5 years ago by
Category: Watch Lists
Pete I have a code for watch list cross red bar is bearish and green bar is bullish.  Is it possible to make the most recent EMA cross pop to the top of my column like a timestamp. def price = close; def fast_length = 9; def slow_length = 50; def dis...
0
votes
1
answer
253
views
asked 5 years ago by
Hello, I want to set up an alert trigger for when the combine signals of these 3 indicators are in agreement for. I just cant seem to get the code just right to trigger the signals just right, please see blow: def rsi1 = if reference RSI(length = 14)...