Welcome to the Traders Laboratory Forums.
Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL.

Reply
IchiMoku KinKo Hyo Details »»
IchiMoku KinKo Hyo
Platform: , by sneo sneo is offline
Developer Last Online: Feb 2012 Show Printable Version Email this Page

Platform: Tradestation Rating:
Released: 05-01-2009 Last Update: Never Installs: 13
Re-useable Code  
No support by the author.

IchiMoku KinKo Hyo - Goichi Hosoda 1968

Application in tradestation

Download Now

File Type: eld ~ichimoku.ELD (5.0 KB, 149 views)

Show Your Support

  • If you like to thanks you by the author -> Click Thanks to the Author
  • This modification may not be copied, reproduced or published elsewhere without the author's permission.
The Following 7 Users Say Thank You to sneo For This Useful Post:
aaa (05-02-2009), FranckT (08-05-2009), Fredd (05-02-2009), soulman (09-13-2009), Stat (02-19-2011), Tams (05-01-2009), whisper01Barry (05-01-2009)

Comments
Old 05-10-2009, 04:42 AM   #18

Join Date: May 2008
Location: Singapore
Posts: 59
Ignore this user

Thanks: 22
Thanked 32 Times in 16 Posts

Re: IchiMoku KinKo Hyo

The code posted is the version of span using just lines. Their solution of plotting this with "High" "Low" to imitate the shading has a little problem. If plotting the 2 lines as "High" "Low", your OHLC chart as Bar Chart will appear erroreous. This solution means you can only apply "High" "Low" plot to your OHLC chart as Candle Charts.

As I prefer to have the liberty of switching from Bar to Candle and back without any weird appearance of my charts, I find this solution incomplete and hence, did not apply it to the posted eld.

You can still use the code posted, that will still be the solution of having the Spans as Lines rather than having the cloud shaded.
sneo is offline  
Reply With Quote
Old 05-20-2009, 10:30 PM   #19

Join Date: May 2009
Location: Cozumel
Posts: 1
Ignore this user

Thanks: 3
Thanked 2 Times in 1 Post

Re: IchiMoku KinKo Hyo

Hello

I can not answer any questions about the Ichimoku indicator, but here is a site that has some good info,
Main Page - IchiWiki - The Definitive Reference to the Ichimoku Kinko Hyo Charting System

Successful trading!
Takysie is offline  
Reply With Quote
The Following 2 Users Say Thank You to Takysie For This Useful Post:
aaa (05-23-2009), Stat (02-19-2011)
Old 05-23-2009, 04:59 AM   #20
aaa

aaa's Avatar

Join Date: Jun 2008
Location: Switzerland
Posts: 443
Ignore this user

Thanks: 240
Thanked 283 Times in 136 Posts

Re: IchiMoku KinKo Hyo

ThanX Takysie for this very interesting site
aaa is offline  
Reply With Quote
Old 06-21-2009, 12:55 PM   #21

Fredd's Avatar

Join Date: Sep 2008
Location: Europe
Posts: 22
Ignore this user

Thanks: 24
Thanked 11 Times in 6 Posts

Could this Ichomoku indicator be fixed?

After some months of browsing the web for a correct working ichimoku indicator for TS I still haven't found it. The problem of the Ichi indicator in this thread is the plotting of the cloud, it cannot be shifted forward as it should be. This is because of the way it paints the cloud with trendlines. According to Sneo the forward shifting of the cloud creates problems when switching views from candles to bars in the charts. The combination of a painted cloud and forwarded shifted seems to be impossible the way this indicator is programmed.
Thanks in advance. Fredd
Fredd is offline  
Reply With Quote
Old 06-21-2009, 03:42 PM   #22

Join Date: Feb 2008
Posts: 45
Ignore this user

Thanks: 53
Thanked 26 Times in 18 Posts

Re: IchiMoku KinKo Hyo

This is the ichi indicator I have....not sure if its any good..the same as yours and/or with the same problems.


Input:Tenkan(9),Kijun(26) ,Chikou(26),SenkouA(26),S enkouB(52);
Var:TS(0),KS(0),CS(0),SA( 0),SB(0);

Value1 = Highest(H,Tenkan);
Value2 = Lowest(L,Tenkan);

TS = ( Value1 + Value2 ) /2;

Value3 = Highest ( H, Kijun);
Value4 = Lowest (L, Kijun);

KS = ( Value3 + Value4 ) / 2;

SA = ( TS + KS ) / 2;

Value5 = Highest( H , SenkouB);
Value6 = Lowest ( L , SenkouB);

SB = (Value5 + Value6) / 2;


Plot1(TS,"TS");
Plot2(KS,"KS");
Plot3[Chikou](C,"CS");
Plot4[-SenkouA](SA,"SA");
Plot5[-SenkouB/2](SB,"SB");
Plot6[-SenkouA](SA,"SAC");
Plot7[-SenkouB/2](SB,"SBC");

if SA > SB then
begin
SetPlotColor[-SenkouA]( 6, darkgreen ) ;
SetPlotColor[-SenkouB/2]( 7, darkgreen ) ;
end
else
begin
SetPlotColor[-SenkouA]( 6, darkmagenta ) ;
SetPlotColor[-SenkouB/2]( 7, darkmagenta ) ;
end ;
Attached Thumbnails
IchiMoku KinKo Hyo-es-ichi.jpg  
Moyyim is offline  
Reply With Quote
The Following 2 Users Say Thank You to Moyyim For This Useful Post:
FxMatrix (11-13-2009), Stat (02-19-2011)
Old 06-22-2009, 02:55 PM   #23

Fredd's Avatar

Join Date: Sep 2008
Location: Europe
Posts: 22
Ignore this user

Thanks: 24
Thanked 11 Times in 6 Posts

Re: IchiMoku KinKo Hyo

Hi Moyyim,

Thanks for sharing this code with us. Your indicator is constructed differently, and probably this code can solve the problem of the other ichimoku indicator. Using your code I couldn't get the cloud be painted, but this is probably due to a specific line formatting. By default all lines are set as normal lines, but I think the cloud must be set differently. Could you tell me how the SAB and the SBC lines are formatted as in your own picture showing the indicator? Thanks again Moyyim.

I have included your indicator in ELD format for our TS and MC friends.

Fredd
Attached Thumbnails
IchiMoku KinKo Hyo-formatting.gif  
Attached Files
File Type: eld ICHIMOKU.ELD (4.2 KB, 50 views)
Fredd is offline  
Reply With Quote
The Following User Says Thank You to Fredd For This Useful Post:
Stat (02-19-2011)
Old 06-22-2009, 03:21 PM   #24

Join Date: Feb 2008
Posts: 45
Ignore this user

Thanks: 53
Thanked 26 Times in 18 Posts

Re: IchiMoku KinKo Hyo

Fredd

The format I have is:

Style
SAC - Bar High - dashed line - lowest weight
SBC - Bar Low - dashed line - lowest weight


Scaling
Same axis as underlying data


Format Window
Space to right 30 bars

Incidentally, I just switched a chart from bar > candle and the cloud isnt right, so doesn't look as if this indi will solve your problem of being able to switch between chart types?....sorry.

Cheers
Moyyim is offline  
Reply With Quote
The Following User Says Thank You to Moyyim For This Useful Post:
Fredd (06-22-2009)
Old 06-22-2009, 04:26 PM   #25

Fredd's Avatar

Join Date: Sep 2008
Location: Europe
Posts: 22
Ignore this user

Thanks: 24
Thanked 11 Times in 6 Posts

Re: IchiMoku KinKo Hyo

May I ask one of our EL gifted TL members a bit of his or her precious time to help us solving this problem? It seems close to impossible having the combination of candlesticks and a painted cloud forward shifted in time in the ichimoku indicators here in this thread. I understand I am asking a lot of you to solve this problem and I understand if you cannot spend time on this, but maybe .... I have attached a picture of it to help you: candles and a forward shifted painted cloud.

Thank you in advance.
Fredd
Attached Thumbnails
IchiMoku KinKo Hyo-ichimoku.gif  
Fredd is offline  
Reply With Quote

Reply

Thread Tools
Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Ichimoku Kinko Hyo Soultrader Technical Analysis 7 05-15-2012 09:20 AM
New Video: Ichimoku Kinko Hyo Chart LS_Chad Linnsoft 5 05-01-2009 04:08 AM
Ichimoku Charts whisper01Barry Trading Indicators 1 01-31-2008 04:18 PM
Ichimoku Kinko Hyo Strategies Soultrader Day Trading and Scalping 2 09-04-2007 08:13 AM

All times are GMT -4. The time now is 04:37 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.