Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Ichimoku Cloud Questions

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Ichimoku Cloud Questions

    The indicator developed in the ecosystem for Ichimoku Cloud I have some questions. I am trying to create a strategy that uses all of the values of the indicator.
    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.

    #2
    So I think I have figured out that the Databox is actually showing the future bar value when hovering over the currentbar.
    So to accomplish the conditions from my previous post minus the close over the 50 SMA
    here is my latest version:
    /// For Long Entry
    && HASmooth.HAClose[0] > Icky1.SenkouSpanA[26] /// HeikenAshi Close Above the Cloud
    && HASmooth.HAClose[0] > Icky1.SenkouSpanB[26] /// HeikenAshi Close Above the Cloud
    && Icky1.TenkanSen[0] > Icky1.KijunSen[0] && Icky1.TenkanSen[1] < Icky1.KijunSen[1] /// CrossOver Conversion Line Above BaseLine
    && Icky1.ChikouSpan[26] > Icky1.SenkouSpanA[26] && Icky1.ChikouSpan[26] > Icky1.SenkouSpanB[26] /// Lagging Line Above Cloud
    && Icky1.SenkouSpanA[0] > Icky1.SenkouSpanB[0] /// Cloud turns Green 26 bars ahead

    /// For the Short Entry
    && HASmooth.HAClose[0] < Icky1.SenkouSpanA[26] /// HeikenAshi CLose Below the Cloud
    && HASmooth.HAClose[0] < Icky1.SenkouSpanB[26] /// HeikenAshi CLose Below the Cloud
    && Icky1.TenkanSen[0] < Icky1.KijunSen[0] && Icky1.TenkanSen[1] > Icky1.KijunSen[1] /// CrossOver Conversion Line Below BaseLine
    && Icky1.ChikouSpan[26] < Icky1.SenkouSpanA[26] && Icky1.ChikouSpan[26] < Icky1.SenkouSpanB[26] /// Lagging Line Below Cloud 26 bars previous
    && Icky1.SenkouSpanA[0] < Icky1.SenkouSpanB[0] /// Cloud turns Red 26 bars ahead

    Checkout Youtube video I watched to come up with this idea: I added the HeikenAshiSmoothed
     

    Comment


      #3
      Hello set2win,

      Thanks for your post.

      It looks like you got it figured out. I do have a couple examples for creating some conditions with the Ichimoku Cloud indicator which may also be helpful for others browsing the forum.

      I have attached the examples here.

      We look forward to assisting.
      Attached Files

      Comment


        #4
        Thanks for the confirmation and the examples, very helpful.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by NullPointStrategies, Today, 05:17 AM
        0 responses
        53 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        130 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        70 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        44 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        49 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X