2楼
懇求禿鷲老師和壇子裡的高手編個公式!謝謝!!
韬客社区www.talkfx.co
发表于:2013-02-04 05:48只看该作者
3楼
你直接用MACD不就得了。
韬客社区www.talkfx.co
4楼
韬客社区www.talkfx.co
5楼
韬客社区www.talkfx.co
发表于:2013-02-05 01:50只看该作者
6楼
韬客社区www.talkfx.co
发表于:2013-02-05 01:52只看该作者
7楼
韬客社区www.talkfx.co
8楼
韬客社区www.talkfx.co
9楼
发表于:2013-02-05 07:26只看该作者
11楼
韬客社区www.talkfx.co
发表于:2013-02-05 07:49只看该作者
12楼
本帖最后由 zaneball 于 2013-2-5 15:51 编辑
看了你这个图,KD差離指標就是把KDJ的J線變成柱子啊,形狀類似于MACD,這個指標我好像有,但是幾千個指標我找不到。
韬客社区www.talkfx.co
13楼
KDJ之J值計算是3K-2D得來的!
KD差離柱狀圖來自K值和D值兩條線的距離差(乖離)!很類似MACD指標原理!
我的系統從長線到超短線都考慮在內!從k線盤態‧趨勢盤態到指標盤態之微觀到宏觀格局!!
技術分析強調邏輯思維!當然首重趨勢,再來是買賣點,停損停利點!
假如有一系列思維應會脈絡分明,井然有序!!MACD KD RSI指標用法都一樣,只是長短時間有別!!
乾乾淨淨的圖讓人看起來簡單‧清爽而不複雜!
操作理解的行情,設好止損後,就讓市場去照顧利潤吧!!
KD差離柱狀圖來自K值和D值兩條線的距離差(乖離)!很類似MACD指標原理!
我的系統從長線到超短線都考慮在內!從k線盤態‧趨勢盤態到指標盤態之微觀到宏觀格局!!
技術分析強調邏輯思維!當然首重趨勢,再來是買賣點,停損停利點!
假如有一系列思維應會脈絡分明,井然有序!!MACD KD RSI指標用法都一樣,只是長短時間有別!!
乾乾淨淨的圖讓人看起來簡單‧清爽而不複雜!
操作理解的行情,設好止損後,就讓市場去照顧利潤吧!!
韬客社区www.talkfx.co
14楼
韬客社区www.talkfx.co
16楼
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 GreenYellow
#property indicator_color2 Red
#property indicator_color3 Aqua
//Aqua
//---- input parameters
extern int KPeriod=9;
extern int DPeriod=3;
extern int JPeriod=3;
double ind_buffer1;
double ind_buffer2;
double ind_buffer3;
double ind_buffer4;
double HighesBuffer;
double LowesBuffer;
int draw_begin1=0;
int draw_begin2=0;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- 2 additional buffers are used for counting.
IndicatorBuffers(6);
SetIndexBuffer(4, HighesBuffer);
SetIndexBuffer(5, LowesBuffer);
SetIndexBuffer(3, ind_buffer1);
//---- indicator lines
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0, ind_buffer2);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1, ind_buffer3);
SetIndexStyle(2,DRAW_HISTOGRAM);
SetIndexBuffer(2, ind_buffer4);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("KDJ("+KPeriod+","+DPeriod+","+JPeriod+")");
SetIndexLabel(1,"K");
SetIndexLabel(2,"D");
SetIndexLabel(3,"J");
//----
draw_begin1=KPeriod+JPeriod;
draw_begin2=draw_begin1+DPeriod;
SetIndexDrawBegin(0,draw_begin1);
SetIndexDrawBegin(1,draw_begin2);
return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int start()
{
int i,k;
int counted_bars=IndicatorCounted();
double price;
//----
if(Bars<=draw_begin2) return(0);
//---- initial zero
if(counted_bars<1)
{
for(i=1;i<=draw_begin1;i++) ind_buffer1[Bars-i]=0;
for(i=1;i<=draw_begin2;i++) ind_buffer2[Bars-i]=0;
}
//---- minimums counting
i=Bars-KPeriod;
if(counted_bars>KPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
double min=1000000;
k=i+KPeriod-1;
while(k>=i)
{
price=Low[k];
if(min>price) min=price;
k--;
}
LowesBuffer=min;
i--;
}
//---- maximums counting
i=Bars-KPeriod;
if(counted_bars>KPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
double max=-1000000;
k=i+KPeriod-1;
while(k>=i)
{
price=High[k];
if(max
k--;
}
HighesBuffer=max;
i--;
}
//---- %K line
i=Bars-draw_begin1;
if(counted_bars>draw_begin1) i=Bars-counted_bars-1;
while(i>=0)
{
double sumlow=0.0;
double sumhigh=0.0;
for(k=(i+JPeriod-1);k>=i;k--)
{
sumlow+=Close[k]-LowesBuffer[k];
sumhigh+=HighesBuffer[k]-LowesBuffer[k];
}
if(sumhigh==0.0) ind_buffer1=100.0;
else ind_buffer1=sumlow/sumhigh*100;
i--;
}
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
//---- signal line is simple movimg average
for(i=0; i
ind_buffer2=iMAOnArray(ind_buffer1,Bars,DPeriod,0,MODE_SMA,i);
for(i=0; i
ind_buffer3=iMAOnArray(ind_buffer2,Bars,JPeriod,0,MODE_SMA,i);
for(i=0; i
ind_buffer4=ind_buffer2-ind_buffer3;
//----
return(0);
}
//+------------------------------------------------------------------+
#property indicator_buffers 3
#property indicator_color1 GreenYellow
#property indicator_color2 Red
#property indicator_color3 Aqua
//Aqua
//---- input parameters
extern int KPeriod=9;
extern int DPeriod=3;
extern int JPeriod=3;
double ind_buffer1;
double ind_buffer2;
double ind_buffer3;
double ind_buffer4;
double HighesBuffer;
double LowesBuffer;
int draw_begin1=0;
int draw_begin2=0;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- 2 additional buffers are used for counting.
IndicatorBuffers(6);
SetIndexBuffer(4, HighesBuffer);
SetIndexBuffer(5, LowesBuffer);
SetIndexBuffer(3, ind_buffer1);
//---- indicator lines
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0, ind_buffer2);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1, ind_buffer3);
SetIndexStyle(2,DRAW_HISTOGRAM);
SetIndexBuffer(2, ind_buffer4);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("KDJ("+KPeriod+","+DPeriod+","+JPeriod+")");
SetIndexLabel(1,"K");
SetIndexLabel(2,"D");
SetIndexLabel(3,"J");
//----
draw_begin1=KPeriod+JPeriod;
draw_begin2=draw_begin1+DPeriod;
SetIndexDrawBegin(0,draw_begin1);
SetIndexDrawBegin(1,draw_begin2);
return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int start()
{
int i,k;
int counted_bars=IndicatorCounted();
double price;
//----
if(Bars<=draw_begin2) return(0);
//---- initial zero
if(counted_bars<1)
{
for(i=1;i<=draw_begin1;i++) ind_buffer1[Bars-i]=0;
for(i=1;i<=draw_begin2;i++) ind_buffer2[Bars-i]=0;
}
//---- minimums counting
i=Bars-KPeriod;
if(counted_bars>KPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
double min=1000000;
k=i+KPeriod-1;
while(k>=i)
{
price=Low[k];
if(min>price) min=price;
k--;
}
LowesBuffer=min;
i--;
}
//---- maximums counting
i=Bars-KPeriod;
if(counted_bars>KPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
double max=-1000000;
k=i+KPeriod-1;
while(k>=i)
{
price=High[k];
if(max
k--;
}
HighesBuffer=max;
i--;
}
//---- %K line
i=Bars-draw_begin1;
if(counted_bars>draw_begin1) i=Bars-counted_bars-1;
while(i>=0)
{
double sumlow=0.0;
double sumhigh=0.0;
for(k=(i+JPeriod-1);k>=i;k--)
{
sumlow+=Close[k]-LowesBuffer[k];
sumhigh+=HighesBuffer[k]-LowesBuffer[k];
}
if(sumhigh==0.0) ind_buffer1=100.0;
else ind_buffer1=sumlow/sumhigh*100;
i--;
}
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
//---- signal line is simple movimg average
for(i=0; i
ind_buffer2=iMAOnArray(ind_buffer1,Bars,DPeriod,0,MODE_SMA,i);
for(i=0; i
ind_buffer3=iMAOnArray(ind_buffer2,Bars,JPeriod,0,MODE_SMA,i);
for(i=0; i
ind_buffer4=ind_buffer2-ind_buffer3;
//----
return(0);
}
//+------------------------------------------------------------------+
韬客社区www.talkfx.co
17楼
韬客社区www.talkfx.co
发表于:2013-10-24 12:21只看该作者
18楼
回复下载
韬客社区www.talkfx.co