logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
Ron  
#1 Posted : Saturday, March 8, 2008 2:52:11 PM(UTC)
Ron

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 5/25/2005(UTC)
Posts: 5

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

henry1224  
#2 Posted : Sunday, March 9, 2008 8:07:10 AM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)

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

elen  
#3 Posted : Tuesday, June 7, 2011 4:22:15 AM(UTC)
elen

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 5/31/2011(UTC)
Posts: 2

Thank you guys! It's very useful info!!
Guest  
#4 Posted : Thursday, June 2, 2016 12:16:17 PM(UTC)
Guest

Rank: Member

Groups: Guests
Joined: 5/6/2007(UTC)
Posts: 25

Can it be updated based on below signals http://www.ichimokutrader.com/signals.html
writetoevv  
#5 Posted : Thursday, June 2, 2016 1:41:45 PM(UTC)
writetoevv

Rank: Newbie

Groups: Registered Users, Subscribers
Joined: 10/30/2015(UTC)
Posts: 7

Hi henry1224 , Could you create ichimoku system for metastock based on rules of below Link. http://www.ichimokutrader.com/signals.html. It Would be a great help..Thank you.
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.