Stock Scanners (11)

Votes
Answers
Views
Question
0
votes
1
answer
92
views
asked 2 years ago by
Category: Stock Scanners
Having difficulty creating the third and final condition of a TOS scan whereby the Kijun value + 1atr <= closing price. My definition of the atr = 14 standard The whole scan is as follows:  price closes above kijun  William %R (8periods) > -20 ...
1
vote
1
answer
113
views
asked 4 years ago by
Category: Stock Scanners
Hey Pete, Happy New Year. Thanks for your video and the code on using Ichimoku to scan stocks -- https://www.youtube.com/watch?v=i8U6KqBMmGM . I was able to get the scan to trigger using TOS. The scan shows correctly for stocks as per the daily chart...
0
votes
1
answer
148
views
asked 5 years ago by
Category: Stock Scanners
Hey Pete, including two screenshots, hopefully. Ive never done screenshots before so let me know if you get them. Im probably missing something but it looks to me like there should have been a long signal.  Thanks for all you do this sight is awesome...
0
votes
1
answer
315
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, I am interested in creating a scan that looks at the forward looking portion of the Ichimoku cloud and can scanning for whether that is bullish or bearish. How would I go about doing this? Thanks! Justin
0
votes
1
answer
186
views
asked 6 years ago by
Category: Stock Scanners
Hi Pete, Good day to you. Can you create a screener that can scan First Candle Cross Above/ Below Tenkan, First Candle Close Above/ Below Tenkan I had attached with the valid signal sample. Thanks for your help and support. Rgds, JinWei    ...
0
votes
0
answers
103
views
Be first to answer!
asked 6 years ago by
Category: Stock Scanners
When I use the code you provided #plot scan = Highest(signalBreakAboveCloud, 3) > 0 and Highest(signalBullishConfirmation, 3) > 0; #plot scan = Highest(signalBreakBelowCloud, 3) > 0 and Highest(signalBearishConfirmation, 3) > 0; The only ...
0
votes
1
answer
1367
views
asked 6 years ago by
Category: Stock Scanners
Do you have a TOS script built for the break above the cloud
0
votes
1
answer
224
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, Thank you so much for your wonderful scanners and videos. I am using a modified version of your Ichimoku BWC scanner. I would like to scan for when the white (Chikou) trailing line is moving up and breaking through the cloud (bullish) 26 per...
0
votes
1
answer
234
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, First, thank you for the awesome scanner and videos.  I have literally been tweaking the scanner for the past 5 hours.  I noticed something with the Bearish breakout with confirmation scanners.  I understand if the Chikou is not below the cl...
0
votes
0
answers
179
views
Be first to answer!
asked 7 years ago by
Category: Stock Scanners
Hi Pete, Please check my Ichimoku scan code below. Is the logic correct? Not sure why it gives me all those errors: def ichiCloudCrossAbove = high[1] < "Span A" and high[1] < "Span B" and close > "Span A" and close > "Span B"; def ichiClo...