A request that was addressed to ProRealTime:
Hi,
I was wondering if there is a way to scan currency pairs that breakout and close above/below the Ichimoku cloud indicator
What I want is an alert when price breaks out and closes above/below the Senkou span B on these timeframes
30 min, 60 min, 120 min, 240 min daily.
hope this is possible
Suggestion for an anwser:
timeframe (30 minutes)
//p1=9
//p2=26
p3=52
p4=26
//tenkan=(highest[p1](high)+lowest[p1](low))/2
//kijun=(highest[p2](high)+lowest[p2](low))/2
//SpanA=(tenkan[p4]+kijun[p4])/2
SpanB=(highest[p3](high[p4])+lowest[p3](low[p4]))/2
c1=close crosses over spanb or close crosses under spanB
timeframe (1 hours)
//p1=9
//p2=26
p3=52
p4=26
//tenkan=(highest[p1](high)+lowest[p1](low))/2
//kijun=(highest[p2](high)+lowest[p2](low))/2
//SpanA=(tenkan[p4]+kijun[p4])/2
SpanB=(highest[p3](high[p4])+lowest[p3](low[p4]))/2
c2=close crosses over spanb or close crosses under spanB
timeframe (2 hours)
//p1=9
//p2=26
p3=52
p4=26
//tenkan=(highest[p1](high)+lowest[p1](low))/2
//kijun=(highest[p2](high)+lowest[p2](low))/2
//SpanA=(tenkan[p4]+kijun[p4])/2
SpanB=(highest[p3](high[p4])+lowest[p3](low[p4]))/2
c3=close crosses over spanb or close crosses under spanB
timeframe (4 hours)
//p1=9
//p2=26
p3=52
p4=26
//tenkan=(highest[p1](high)+lowest[p1](low))/2
//kijun=(highest[p2](high)+lowest[p2](low))/2
//SpanA=(tenkan[p4]+kijun[p4])/2
SpanB=(highest[p3](high[p4])+lowest[p3](low[p4]))/2
c4=close crosses over spanb or close crosses under spanB
finalcondition=c1 or c2 or c3 or c4
screener[finalcondition]
Hi Henry,
Thanks for quick turnaround. I really appreciate you working on my request, however I may not have explained exactly what I was looking for, so goes…
What I am trying to achieve is..
an alert for example when price moves through the cloud and breaks and closes above
/ below Senkou span B.
Is it possible to get alerts on 30min, 60 min, 120 min, 4H and Daily and timeframe shown when alert is triggered in the pro screener. I have attached a couple of screenshots of what I mean, hope they help.
Regards,
Darragh
So you want to have SpanA below SpanB for a bullish crossing and SpanA above SpanB for a bearish one?
Yes Nicolas that is correct, price has to travel through the cloud and close either above/ below to trigger the alert as shown in screenshots attached in previous post, if it is possible to get alert for 30 min, 60 min ,120 min , 4H and daily time frames.
Thanks Darragh
I am also looking for a screener that will alert me when these conditions are met on the ichimoku cloud indicator on various timeframes..
when price touches the “Kijun sen”, “Tenken sen” or Senkou span B at the same price level on different timeframes eg; 30 min, 60 min, 120 min, 4H and Daily.
Multi timeframe confluence area as I call it.
thanks
The screener code already alert you of what happens on these different timeframes, but it’s not testing the SpanA and SpanB above/below condition you mention. I’ll give a try asap.
I changed the code accordingly to your needs, you’ll get a lot of alerts with this screener because of all timeframes testing the same conditions at the same time.
Please find it attached to this post.
Nicolas
Thank you, however I cannot open file, can you send in different file so I can copy and paste into screener, please.
Thanks
Darragh
You just have to use the import button in the ProScreener window. Once you have clicked on it, select the ITF file and import it, screener will appear into the screeners list.
Nicolas,
I am also looking for a screener that will alert me when these conditions are met on the ichimoku cloud indicator on various timeframes..
when price touches the “Kijun sen”, “Tenken sen” or Senkou span B at the same price level on different timeframes eg; 30 min, 60 min, 120 min, 4H and Daily.
Multi timeframe confluence area as I call it.
thanks