Questions (861)

Votes
Answers
Views
Question
0
votes
1
answer
340
views
asked 4 years ago by
Category: Stock Scanners
hi Pete, I am looking for a scanner with the strategy below. It will be daily scan. Can you help? 1. Stochatic oversold when %K < = 20 for current candle and 2. TTM_Squeeze > = 3 days and 3. Current candle > 20 EMA Thanks Minh
0
votes
1
answer
947
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, Is it possible to add cloud (ie shaded area) between two moving averages per code below? I tried combining them into a single code to have a go at it to no avail. Thank you! Guga ############## input price=close; input offset=0; input length...
0
votes
1
answer
269
views
asked 4 years ago by
Category: Watch Lists
Hi Pete, In a previous post you created a script that colors the watchlist column to match the current color of the TTM Trend.  Are you able to also add the consecutive bar count which will show how many consecutive bars have been painted as red or b...
0
votes
1
answer
420
views
asked 4 years ago by
Category: Chart Studies
I want help in adding code to TPO studie to view Total TPO count in profile thinkorswim Total TPO count equal to sum of all horizontalrow value (sum of all tpo) https://ibb.co/J7N89BV like this one https://ibb.co/r6rh25D
1
vote
1
answer
152
views
asked 4 years ago by
I'm trying to set an alert that's equivalent to a trailing-stop order.  I found this study elsewhere but I'm not sure it's doing what I want, so I thought I'd ask you for your opinion. input Period = 12; input Price = close; def HP = Highest(Price,Pe...
0
votes
1
answer
45
views
asked 4 years ago by
Category: Chart Studies
Hi, is there anyway to fix the plotted line so it's either not showing the day from 2 days ago or removing the angled portion of it? I think the screenshot should help =====code============= input aggregationPeriod = AggregationPeriod.DAY; input leng...
1
vote
1
answer
69
views
asked 4 years ago by
Category: Chart Studies
Hi all, I have a code that checks every bar and display up/down arrow when price crosses EMA. I only want it to show the last two instances instead of every candle on the chart because it is too messy to look at during market hours. What can I add to...
0
votes
1
answer
255
views
asked 4 years ago by
Category: Strategy Guide
♥ 1
I am trying to create a conditional order based off this https://usethinkscript.com/threads/bollinger-bands-and-stochastic-scalping-indicator-for-thinkorswim.6/ ----- input tradeSize = 100; def signal = close is less than or equal to BollingerBands()...
0
votes
1
answer
238
views
asked 4 years ago by
Category: Chart Studies
Pete,   First off, thank you for all you do. This site is a great resource.   Question about referencing other symbols within TPO or volume profile study. I have tried to reference other symbols but the profile function doesnt seem to want ...
0
votes
1
answer
245
views
asked 4 years ago by
Category: Stock Scanners
Hello Pete I am trying to create a scan that will only show "new" stocks in the last 5 mins that crossed the VWAP.  If they are crossed more than 10 or 15 mins ago above i dont want them to show (ie: false).  It is giving me an error when i...