HASmooth is the HeikenAshiSmoothed Indicator
Icky1 is the IchimokuCloud
I need the current HeikenAshi Close Greater than the cloud
I need the conversion line TenkanSen greater than the Baseline (KijunSen)
I need the lagging span greater than the SpanA and SpanB 26 bars previous
and finally I need spanA greater than spanB 26 bars into future as is displayed by the cloud
&& HASmooth.HAClose[0] > SMA50[0]
&& HASmooth.HAClose[0] > Icky1.SenkouSpanA[0]
&& HASmooth.HAClose[0] > Icky1.SenkouSpanB[0]
&& Icky1.TenkanSen[0] > Icky1.KijunSen[0]
&& Icky1.ChikouSpan[26] > Icky1.SenkouSpanA[26] && Icky1.ChikouSpan[26] > Icky1.SenkouSpanB[26]
//&& Icky1.SenkouSpanA[-26] > Icky1.SenkouSpanB[-26]
-26 doesn't work, so I'm stuck on how to represent the cloud as it is displayed in future bars.
Also SpanA and SpanB in the Databox do not seem to represent the cloud at the CurrentBar
Any ideas on this would be great.

Comment