Questions (2370)

Votes
Answers
Views
Question
0
votes
1
answer
359
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
365
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
118
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
180
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
194
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
163
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
145
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
552
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...
0
votes
1
answer
136
views
asked 4 years ago by
I deleted my original post to try and clean it up a bit (For some reason, editing does not work) I did see a similar post but wasn't able to make it work with my code. My signal line can be “Green”, “Red” or “Gray” What I was hoping to achieve is to ...
0
votes
1
answer
127
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, Could you please help me out with the code below as I’d like to have it plot correctly for normal market hours as well? At the moment it only shows it correctly if extended hours is enabled. Thanks