Questions (2372)

Votes
Answers
Views
Question
0
votes
1
answer
135
views
asked 5 years ago by
Category: Chart Studies
Hi I was wondering if there was a way to have a line drawn just for the prior close.   For example this draw a line for each days close. I just want one for the current day and none showing for prior days.   plot DailyClose = close(period="...
0
votes
1
answer
568
views
asked 5 years ago by
Category: Chart Studies
Hello Pete,   I hope all is well. The purpose of this study is to modify the current code below that plots the daily ATR on the 1-minute chart and shows a color based on if the range is tight (yellow), normal (green) or wide (red).   All I ...
1
vote
1
answer
124
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, Thanks for all your help with educational videos. I was trying to create a scan based on below and having no luck. If you can please help me with this scan TimeFrame = Based on first 30 Min of Trading Day 8.30 to 9.00 Retracement near 0.05% ...
0
votes
1
answer
1872
views
asked 5 years ago by
Category: Stock Scanners
Trying to Scan for % change since open, tried several code snips has no effect on scan, still shows stocks up from prev days close but down for the current day. I want up for the current day since open only. When I enter code in the Study Filter and ...
0
votes
1
answer
104
views
asked 5 years ago by
Category: Watch Lists
Pete, I'm trying to color text for gap up/down, what am I missing ? plot c = open - close[1]; AssignColor (if open > close then Color.GREEN else Color.RED); Thanks, AJ
0
votes
1
answer
169
views
asked 5 years ago by
Category: Watch Lists
Hello Pete, I'm glad your doing well.  I'm in need of some programming help, what I've been trying to do but can't seem to get is back round color in columns on my watch list. 1- If last price traded is > PDH Green and conversely if last price tra...
1
vote
1
answer
294
views
asked 5 years ago by
Category: Chart Studies
Hi Pete, I figure if anyone can solve this one, it is you. I've had this nagging issue with a volume bars study that I use to overlap onto my charts. As you can see in the attached image, the price axis is shifted on the chart, so 0 is not at the bot...
0
votes
1
answer
1080
views
asked 5 years ago by
Category: Stock Scanners
I am trying to narrow down my tos scan further by hopefully being able to add a timeframe between lets say hours 1500 to 0630 but more so want to be able to set different times so it only scans between those hours.  Is that a possibility?   Than...
0
votes
1
answer
163
views
asked 5 years ago by
Category: Chart Studies
I've been searching around a bit for code to auto fib the previous week/month. So on Monday it would auto fib the week prior. I have found some of your doe that shows how to pull the begining of the week (AggregationPeriod.WEEK;) but cant figure how ...
1
vote
1
answer
67
views
asked 5 years ago by
Category: Chart Studies
Pete, I only post here if I've depleted all my options, as I don't want to waste your time with simple questions. I have a script that plots a line at the close price from the previous day; plot DailyClose = close(period=”DAY”)[1]; I just need a slig...