Questions (864)

Votes
Answers
Views
Question
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
951
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
342
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
340
views
asked 4 years ago by
Category: Chart Studies
input startDateYyyyMmDd = 20200805; def beyondStartDate = if GetYYYYMMDD() >= startDateYyyyMmDd then 1 else 0; plot VWAP = TotalSum(if beyondStartDate then (((high + low + close) / 3) * volume) else 0) / TotalSum(if beyondStartDate then volume els...
0
votes
1
answer
114
views
asked 4 years ago by
Category: Chart Studies
Is it possible to display the VWAP along the price axis without having it displayed on the chart?  I find the lines to be distracting from other indicators. I am not interested in plotting the outside top and bottom lines.
0
votes
1
answer
174
views
asked 4 years ago by
Category: Stock Scanners
Hello Peter, Can you help generate a scan with all the characteristic bellow? 40 day low is less than 40 day high by 60% (at least 60% or more below the 40 day high) close is greater than or equal to 40 day low by 20% (at least 20% higher than the lo...
0
votes
1
answer
182
views
asked 4 years ago by
http://tos.mx/aWj6VsA Hi Pete, I have tried everything I know to try and get an alert for when the 'color' on this true momentum indicator changes.  Can you please take a look at it. Thanks for everything you do.  
0
votes
1
answer
160
views
asked 4 years ago by
Category: Stock Scanners
Hello, I want to concrete on stock based on volume and liquidity. Is there any way around for scan based on daily number of trade for a stock? If there is one please direct me or give me the scripts of it. Also scan abnormal trade large order come th...
0
votes
1
answer
135
views
asked 4 years ago by
Category: Watch Lists
Hey everyone!   Pete, thank you so much for helping me with my "Display time between bars" question. I have a watchlist full of stocks. I have a custom column with the code below. The watchlist is set to a 1minute chart aggregation. I want the w...
0
votes
1
answer
508
views
asked 4 years ago by
Category: Chart Studies
Hello,   I am looking to make a study that plots how long (in minutes) from the last 1 minute candle. I am using a 1 minute chart. I think this can be achieved by plotting the difference between the current time and the most recent one minute ca...