Login Page - Create Account

Support Board


Date/Time: Sun, 05 May 2024 01:25:43 +0000



Ichimoku Chart Fix

View Count: 1359

[2015-02-26 21:40:02]
User55237 - Posts: 8


Quote:


Originally Posted by Turhovach View Post

Trader07 - Everything you wanted to know about Ichimoku Clouds but were afraid to ask --

http://www.kumotrader.com/ichimoku_w...itle=Main_Page

Regards,

Bo

It seems SC's implementation isn't correct. SC uses the same input price for both highest high and lowest low. It should use SC_HIGH for the highest high and SC_LOW for the lowest low.

This is the code piece copied from the

Kijun_Sen study in studies2.cpp

sc.Highest(sc.BaseData[InputData.GetInputDataIndex()],HH,sc.Index,Period.GetInt());
sc.Lowest(sc.BaseData[InputData.GetInputDataIndex()],LL,sc.Index,Period.GetInt());

To my understanding, it should be changed to:

sc.Highest(sc.BaseData[SC_HIGH],HH,sc.Index,Period.GetInt());
sc.Lowest(sc.BaseData[SC_LOW],LL,sc.Index,Period.GetInt());

--------------------------------------------------------------------------------
Last edited by fuzzy; 12-14-2011 at 12:58 AM.

Have these changes been updated in the source code?
[2015-02-26 21:45:44]
Sierra Chart Engineering - Posts: 104368
Yes.
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account