Questions (2349)

Votes
Answers
Views
Question
0
votes
1
answer
68
views
asked 4 years ago by
Category: Chart Studies
Hello can you help me with the script it shows change during market hours is that possible to have extended hours also show up input SYMB = “SPY”; def AD = close (symbol = SYMB, period = AggregationPeriod.day) – close(symbol = SYMB, period = Aggregat...
0
votes
1
answer
756
views
asked 4 years ago by
Category: Stock Scanners
♥ 1
Pete Is it possible to do a scan based off of TTM squeeze colors in the histogram...I'm looking for stocks that have Red/Cyan in the morning...   declare lower; def nBB = 2.0; def Length = 20.0; def nK_High = 1.0; def nK_Mid = 1.5; def nK_Low = ...
0
votes
1
answer
126
views
asked 4 years ago by
Category: Stock Scanners
Hello everyone.  What I'm trying to do is find where the value of the MACD difference was greater yesterday then today.  Below is something I've used to find where the value is less than the average, I just want to find the same scenario where yester...
0
votes
1
answer
145
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I have the following code which makes 2PM-230PM Candles yellow. My purpose is to see the candles between 2-230PM with specific color which is fulfilled when I am on 15 and 30 TF but not in lower than 15min TF. Another thing is I want to also...
0
votes
1
answer
131
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I am looking for a label either pointing to a specific time line or on the top of chart. input targetTime = 1430; def targetBar = SecondsFromTime(targetTime) == 0; rec targetClose = if targetBar then close else targetClose[1]; plot data = ta...
0
votes
1
answer
32
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, I am looking for a script which can show me the gap between EU PDC and EU next day open. I can find out the NY pit close and pit open gap by turning off the extended hours. Something similar I am looking for EU session. I trade CL mainly and...
0
votes
1
answer
1268
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete Hope all is well and the recovery is going well. I was wondering if you could help with creating a scan that filters out bullish and Bearish engulfing and pin bar patterns according to the strategy mentioned in this YouTube: https://www.youtu...
0
votes
1
answer
207
views
asked 4 years ago by
How do I create an Alert when the RSI is less than 30 and the MACD is greater than zero? They both need be at the same time. Thank you!
0
votes
1
answer
193
views
asked 4 years ago by
Category: Stock Scanners
Pete, I've been searching through your scan tab and can't seem to find what i'm looking for...I'm trying to scan for stock up or down 4% from the previous day close....I'll be doing this scan in pre market...   Thanks
0
votes
1
answer
74
views
asked 4 years ago by
Category: Chart Studies
Hello, Would it be possible to create a countdown label that starts at 300 seconds and counts down every second that passes, then resets to 300 seconds when it's finished?   Thanks!