in Search

Ichimoku Kinko Hyo Lingering Cloud How plotted?

Last post 03-09-2008, 8:07 by henry1224. 1 replies.
Sort Posts: Previous Next
  •  03-08-2008, 14:52 26659

    Ichimoku Kinko Hyo Lingering Cloud How plotted?

    From the Help file (Yeah. I read it)

    >>The Ichimoku Kinko Hyo indicator is composed of the following five plots, in
    addition to the closing prices.

    Tenkan-sen. The standard line. [big snip]
    Kijun-sen. The turning line. [big snip]
    Senkou Span A. The first span. [big snip]
    Senkou Span B. The second span. [big snip]
    Chikou Span. The delayed line. [big snip] <<
    ####################################################

    Part of this indicator is the "cloud" - the area between SpanA and SpanB.

    It'sidentified by a series of vertical lines with 2 colors one for up trend one for down.

    When I go to the Properties dialog, I'm given the ability to change the color scheme and style for each component of the multipart indicator. I make each component invisible by changing it's color to the background color. (I used black as the background color. )You can also make it invisible by setting the Style to Invisible.

    All the component lines disappear with the exception of a histogramlike plot which were/are the lines identifying the space bewteen the 2 spans - the cloud. 

    The lines don't seem to react to a mouse over. They don't exist independently when I use tab
    to go through the plots on the chart.

    How are those lines being plotted?  Why don't they disappear? I would like to use the technique in other indicators.

    TIA

    Ron

  •  03-09-2008, 8:07 26662 in reply to 26659

    Re: Ichimoku Kinko Hyo Lingering Cloud How plotted?

    Did you do a search in the forum?

     

    Here is an expert using the Forum Dll

    Ichimoku Kinko Hyo Expert

    Highlights

    LONG :

    ST:=(HHV(H,26)+LLV(L,26))/2;
    TL:=(HHV(H,9)+LLV(L,9))/2;
    A1:=Ref((ST+TL)/2,-25);
    A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
    LE:= If(A1>=A2,Cross(C,A1),Cross(C,A2));
    LX:= If(A1>=A2,Cross(A1,C),Cross(A2,C));
    SE:= If(A1>=A2,Cross(A2,C),Cross(A1,C));
    SX:= If(A1>=A2,Cross(C,A2),Cross(C,A1));
    B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
    B = 1

    SHORT :

    ST:=(HHV(H,26)+LLV(L,26))/2;
    TL:=(HHV(H,9)+LLV(L,9))/2;
    A1:=Ref((ST+TL)/2,-25);
    A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
    LE:= If(A1>=A2,Cross(C,A1),Cross(C,A2));
    LX:= If(A1>=A2,Cross(A1,C),Cross(A2,C));
    SE:= If(A1>=A2,Cross(A2,C),Cross(A1,C));
    SX:= If(A1>=A2,Cross(C,A2),Cross(C,A1));
    B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
    B = -1

    out :

    ST:=(HHV(H,26)+LLV(L,26))/2;
    TL:=(HHV(H,9)+LLV(L,9))/2;
    A1:=Ref((ST+TL)/2,-25);
    A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
    LE:= If(A1>=A2,Cross(C,A1),Cross(C,A2));
    LX:= If(A1>=A2,Cross(A1,C),Cross(A2,C));
    SE:= If(A1>=A2,Cross(A2,C),Cross(A1,C));
    SX:= If(A1>=A2,Cross(C,A2),Cross(C,A1));
    B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
    B = 0

    Symbols tab

    ENTER LONG :

    ST:=(HHV(H,26)+LLV(L,26))/2;
    TL:=(HHV(H,9)+LLV(L,9))/2;
    A1:=Ref((ST+TL)/2,-25);
    A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
    LE:= If(A1>=A2,Cross(C,A1),Cross(C,A2));
    LX:= If(A1>=A2,Cross(A1,C),Cross(A2,C));
    SE:= If(A1>=A2,Cross(A2,C),Cross(A1,C));
    SX:= If(A1>=A2,Cross(C,A2),Cross(C,A1));
    B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
    B = 1 AND Ref(B,-1) <> 1

    ENTER SHORT :

    ST:=(HHV(H,26)+LLV(L,26))/2;
    TL:=(HHV(H,9)+LLV(L,9))/2;
    A1:=Ref((ST+TL)/2,-25);
    A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
    LE:= If(A1>=A2,Cross(C,A1),Cross(C,A2));
    LX:= If(A1>=A2,Cross(A1,C),Cross(A2,C));
    SE:= If(A1>=A2,Cross(A2,C),Cross(A1,C));
    SX:= If(A1>=A2,Cross(C,A2),Cross(C,A1));
    B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
    B = -1 AND Ref(B,-1) <> -1

    EXIT LONG :

    ST:=(HHV(H,26)+LLV(L,26))/2;
    TL:=(HHV(H,9)+LLV(L,9))/2;
    A1:=Ref((ST+TL)/2,-25);
    A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
    LE:= If(A1>=A2,Cross(C,A1),Cross(C,A2));
    LX:= If(A1>=A2,Cross(A1,C),Cross(A2,C));
    SE:= If(A1>=A2,Cross(A2,C),Cross(A1,C));
    SX:= If(A1>=A2,Cross(C,A2),Cross(C,A1));
    B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
    B = 0 AND Ref(B,-1) = 1

    EXIT SHORT :

    ST:=(HHV(H,26)+LLV(L,26))/2;
    TL:=(HHV(H,9)+LLV(L,9))/2;
    A1:=Ref((ST+TL)/2,-25);
    A2:=Ref((HHV(H,52)+LLV(L,52))/2,-25);
    LE:= If(A1>=A2,Cross(C,A1),Cross(C,A2));
    LX:= If(A1>=A2,Cross(A1,C),Cross(A2,C));
    SE:= If(A1>=A2,Cross(A2,C),Cross(A1,C));
    SX:= If(A1>=A2,Cross(C,A2),Cross(C,A1));
    B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
    B = 0 AND Ref(B,-1) = -1

View as RSS news feed in XML