This checks for bullishsigns using Ichimoku
A very strong bullish sign is when price is above TS and price is above the Cloud, and SMA200 inferior to the cloud
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
// This checks for bullishsigns using Ichimoku // A very strong bullish sign is when price is above TS, // and price is above the Cloud, // and SMA200 < cloud // Author: @Cristofer // V1 // Highly inspired on // https://www.prorealcode.com/prorealtime-market-screeners/ichimoku-screener-stock-picking-for-long-orders/ TS=(highest[9](high) + highest[9](low))/2 KS=(highest[26](high) + lowest[26](low))/2 a1= ts > ks SpanA= (ts+ks)/2 SpanB=(highest[52](high) + lowest[52](low))/2 Maxspan=max(spanA[26],SpanB[26]) b1= close > maxspan sma200 = Average[200](Close) priceOverMA = Close > sma200 cloudOverMA = min(spanA[26], spanB[26]) > sma200 priceOverKS = Close > KS Long = a1 AND b1 AND priceOverMA AND cloudOverMA AND priceOverKS //Screen SCREENER [long](long as"long") |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials