Questions (2349)

Votes
Answers
Views
Question
0
votes
1
answer
408
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, Was wondering if it was possible to get a , into the scan results? Lets go with something super basic, plotting the volume from yesterday (image attached) Using the code: plot x = volume() [1]; ^ this gives me the data with a single decimal ...
1
vote
1
answer
566
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, How can I draw an auto line on pre-market (1st price after 4 AM ) opening price? Thanks
0
votes
0
answers
56
views
Be first to answer!
asked 5 years ago by
Category: Stock Scanners
Hi Pete, I am looking to find the stocks whose low happened in the last 9-12 months and high happened in the last 30 days example: today is 2/10/2019, so low should have occurred around 2/10/2018-4/10-2018 and high should in 1/10/2019-2/10-2019 on a ...
0
votes
1
answer
503
views
asked 5 years ago by
Hi Hahn, Is possible that you can help me to create color bars based on two conditions. Thinkorswim Indicators: if the Acceleration and Deceleration Osc  + Awesome Oscillator  are green= then the color bar will be green if the Acceleration and Decele...
0
votes
1
answer
556
views
asked 5 years ago by
Category: Chart Studies
Hi This code work fine unless it is a FUTURE symbol what im missing here ? def X = if getSymbolPart(1) == "/ES" then 2700 else if getSymbol() == "SPY" then 270 else Double.NaN; plot line = X ;
0
votes
1
answer
1096
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, Is it possible to modify the TTM Squeeze Scan to return only results with the second yellow bar after 2 or more red bars (histogram)? Thanks
0
votes
1
answer
196
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
117
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
147
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
311
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...