Votes
Answers
Views
Question
0
1
289
asked 4 years ago by Corey
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
1
1013
asked 4 years ago by Parrot Empreendedor
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
1
363
asked 4 years ago by Minh Luc
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
1
372
asked 4 years ago by Gary W
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
1
120
asked 4 years ago by mulcher93
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
1
181
asked 4 years ago by Nathan Ngindu
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
1
195
asked 4 years ago by CAROL W PFARR
Category:
Alerts and Notifications
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
1
164
asked 4 years ago by Nathan Ngindu
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
1
146
asked 4 years ago by Mike DAntonio
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
1
567
asked 4 years ago by Mike DAntonio
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...