Questions (2377)

Votes
Answers
Views
Question
0
votes
1
answer
75
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, I am trying to create a scan based on this study, I need the scan results when the price on 5 min crosses above monthly S3 and S4. Please help. http://tos.mx/aFYeAYA, http://tos.mx/oGFTH7c. I need the scan results when 5 min crosses above S3...
1
vote
1
answer
124
views
asked 4 years ago by
Category: Stock Scanners
Hey there! I have some fairly crude code, but it gets me what I want. I can grab the volume of the first 20 minutes with this, and it will show up on my label. However, when I try to scan using the plot in my study and set it to search for > 20, i...
0
votes
1
answer
58
views
asked 4 years ago by
Category: Watch Lists
Hi Pete, I know how to export a watch list in excel but is there a way to update that saved watchlist excel sheet with the latest current price on next day?
0
votes
1
answer
131
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, I am trying to scan PPS buy for 1 hr HA TF. I do have the code for PPS buy. def ppsBuy = PPS().BuySignal; def buy = !IsNaN(ppsBuy); plot scan = buy; What change do I need to do for scanning HA candles? Thank you Shaishav
0
votes
1
answer
85
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, Could you please create a scan to identify the stocks which are above 10% or below 10% of the lows of last 3 months low? Thank you, Shaishav
0
votes
1
answer
121
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, How can I change the following code to scan for close is greater than highest high of minimum 3 to maximum 13 previous bars? plot scan = close > Highest(high[1], 13); Thanks, Shaishav
0
votes
1
answer
196
views
asked 4 years ago by
Category: Watch Lists
Thank you Pete for the custom watch list video. I was able to create a watchlist that brings up my scan but I can't find a way to colour the two findings in different colours. //This part I can't figure out def clsAbove = SimpleMovingAvg("length" = 2...
0
votes
1
answer
271
views
asked 4 years ago by
Category: Stock Scanners
Good Day Pete, Hope you are safe. I was looking to make a scanner which can scan stocks that RSI value change = +40 within last 3 bars. I mean the RSI difference from 1st Bar to last Bar is +40. And the Bar parameter in 1 min. I appreciate your help....
0
votes
1
answer
173
views
asked 4 years ago by
Category: Chart Studies
Hi Pete, Im wondering if you can help me plot (draw) a line for the highest price and lowest price after the last earnings. Thanks for the help.
0
votes
1
answer
1422
views
asked 4 years ago by
Category: Chart Studies
I have the following code but for some reason even if one of the conditions is not true in the if clause, its still displaying "A" in the chart instead of "". For e.g. if Price_Var is 5.09, then none of the below conditions should be valid and it sho...