到奇狐勝券首頁 奇狐社區論壇 購買奇狐勝券 試用奇狐勝券
 
論壇首頁 你可以在這裡編輯你的資料,查看短訊,訂閱主題和論壇參數等等 免費會員註冊 會員列表 論壇幫助 論壇日曆 論壇搜索 加入我的最愛 登出論壇  
奇狐社區論壇 : Powered by vBulletin version 2.3.0 奇狐社區論壇 > 指標公式 > 問題交流 > 关于Stochastic Oscillator指标详细解释...求转飞狐公式
  上一主題   下一主題
作者
主題 發表新主題    回覆主題
jiat
資深會員

註冊日期: Apr 2004
來  自:
文章數量: 119

关于Stochastic Oscillator指标详细解释...求转飞狐公式

Name: Stochastic Oscillator, Stochastic
Author: MetaQuotes
Rating: Not rated
Downloaded: 223 times
Download: Stochastic.mq4 (3.8 Kb) View
Description: The Stochastic Oscillator Technical Indicator compares where a security’s price closed relative to its price range over a given time period. The Stochastic Oscillator is displayed as two lines. The main line is called %K. The second line, called %D, is a Moving Average of %K. The %K line is usually displayed as a solid line and the %D line is usually displayed as a dotted line.

There are several ways to interpret a Stochastic Oscillator. Three popular methods include:

Buy when the Oscillator (either %K or %D) falls below a specific level (e.g., 20) and then rises above that level. Sell when the Oscillator rises above a specific level (e.g., 80) and then falls below that level;

Buy when the %K line rises above the %D line and sell when the %K line falls below the %D line;

Look for divergences. For instance: where prices are making a series of new highs and the Stochastic Oscillator is failing to surpass its previous highs.

Calculation
The Stochastic Oscillator has three variables:

%K periods (Pk). This is the number of time periods used in %K calculation. By default is 5;

%K Slowing Periods (Sk). This value controls the internal smoothing of %K. A value of 1 is considered a fast stochastic; a value of 3 is considered a slow stochastic. By default is 3;

%D periods (Pd). This is the number of time periods used when calculating a moving average of %K. By default is 3;

The formula for %K is:


%K = 100*SUM (CLOSE - MIN (LOW, Pk), Sk) / SUM (MAX (HIGH, Pk) - MIN (LOW, Pk)), Sk)

Where:
CLOSE — is today’s closing price;
MIN (LOW, Pk) — is the lowest low in Pk periods;
MAX (HIGH, Pk) — is the highest high in Pk periods.
SUM (CLOSE - MIN (LOW, Pk), Sk) — amount composed CLOSE - MIN (LOW, Pk) for period Sk;
SUM (MAX (HIGH, Pk) - MIN (LOW, Pk)), Sk) — amount composed HIGH (Pk)) - MIN (LOW, Pk) for period Sk.


The %D moving average is calculated according to the formula:


%D = SMA (%K, Pd)

Where:
Pd — is the smoothing period for %K;
SMA — is the Simple Moving Average




以上E文来自于MT4的官方网站,我根据上面的公式导入飞狐,出现调用参数不符的错误,我简单的调整了一下,发现有个括号出现了问题,得出以下的公式

K:SUM(CLOSE-MIN(LOW, Pk),Sk)/SUM(MAX(HIGH, Pk)-MIN(LOW,Pk),Sk);
D:SMA(K,Pd,1)

结果显示出的指标与MT4完全不一样!,求高手指点

向版主報告此篇 | 查IP位址
Old Post 2008-11-02 00:02
jiat 現在離線 點選這裡查看 jiat 的個人資料 點選這裡給 jiat 傳送一條短訊 查找更多關於 jiat 的文章 增加 jiat 至你的好友列表 編輯/刪除訊息 引用回覆
jiat
資深會員

註冊日期: Apr 2004
來  自:
文章數量: 119

下面是MT4的源码,请帮慢转过到飞狐,谢谢了!

向版主報告此篇 | 查IP位址
Old Post 2008-11-02 00:04
jiat 現在離線 點選這裡查看 jiat 的個人資料 點選這裡給 jiat 傳送一條短訊 查找更多關於 jiat 的文章 增加 jiat 至你的好友列表 編輯/刪除訊息 引用回覆
jiat
資深會員

註冊日期: Apr 2004
來  自:
文章數量: 119

#property copyright "Copyright ?2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"

#property indicator_separate_window
#property indicator_minimum 0
#property indicator_maximum 100
#property indicator_buffers 2
#property indicator_color1 LightSeaGreen
#property indicator_color2 Red
//---- input parameters
extern int KPeriod=5;
extern int DPeriod=3;
extern int Slowing=3;
//---- buffers
double MainBuffer[];
double SignalBuffer[];
double HighesBuffer[];
double LowesBuffer[];
//----
int draw_begin1=0;
int draw_begin2=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- 2 additional buffers are used for counting.
IndicatorBuffers(4);
SetIndexBuffer(2, HighesBuffer);
SetIndexBuffer(3, LowesBuffer);
//---- indicator lines
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0, MainBuffer);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1, SignalBuffer);
//---- name for DataWindow and indicator subwindow label
short_name="Sto("+KPeriod+","+DPeriod+","+Slowing+")";
IndicatorShortName(short_name);
SetIndexLabel(0,short_name);
SetIndexLabel(1,"Signal");
//----
draw_begin1=KPeriod+Slowing;
draw_begin2=draw_begin1+DPeriod;
SetIndexDrawBegin(0,draw_begin1);
SetIndexDrawBegin(1,draw_begin2);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Stochastic oscillator |
//+------------------------------------------------------------------+
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++) MainBuffer[Bars-i]=0;
for(i=1;i<=draw_begin2;i++) SignalBuffer[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<price) max=price;
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+Slowing-1);k>=i;k--)
{
sumlow+=Close[k]-LowesBuffer[k];
sumhigh+=HighesBuffer[k]-LowesBuffer[k];
}
if(sumhigh==0.0) MainBuffer=100.0;
else MainBuffer=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<limit; i++)
SignalBuffer=iMAOnArray(MainBuffer,Bars,DPeriod,0,MODE_SMA,i);
//----
return(0);
}
//+------------------------------------------------------------------+

向版主報告此篇 | 查IP位址
Old Post 2008-11-02 00:05
jiat 現在離線 點選這裡查看 jiat 的個人資料 點選這裡給 jiat 傳送一條短訊 查找更多關於 jiat 的文章 增加 jiat 至你的好友列表 編輯/刪除訊息 引用回覆
alpha
資深會員

註冊日期: Oct 2006
來  自:
文章數量: 225

在 int start() 中可以看出他就是 KD 嚕 ^^

MT4 應該是沒有 HHV(), LLV() 函數,也不支援數列直接四則運算, 所以程式才會變的又臭又長

__________________
偶而是不是也感覺有些老
像個大人般的戀愛
有時心情糟
請你相信我在你身邊別忘了

最後由 alpha 在 2008-11-02 12:22 編輯 向版主報告此篇 | 查IP位址
Old Post 2008-11-02 12:16
alpha 現在離線 點選這裡查看 alpha 的個人資料 點選這裡給 alpha 傳送一條短訊 查找更多關於 alpha 的文章 增加 alpha 至你的好友列表 編輯/刪除訊息 引用回覆
jiat
資深會員

註冊日期: Apr 2004
來  自:
文章數量: 119

其实,我想要的是这【STOCH 随机震荡无效指数】是非常蓍名和优秀的一个指标。

jiat 附帶上了此圖片:

向版主報告此篇 | 查IP位址
Old Post 2008-11-03 00:35
jiat 現在離線 點選這裡查看 jiat 的個人資料 點選這裡給 jiat 傳送一條短訊 查找更多關於 jiat 的文章 增加 jiat 至你的好友列表 編輯/刪除訊息 引用回覆
alpha
資深會員

註冊日期: Oct 2006
來  自:
文章數量: 225

...

__________________
偶而是不是也感覺有些老
像個大人般的戀愛
有時心情糟
請你相信我在你身邊別忘了

向版主報告此篇 | 查IP位址
Old Post 2008-11-03 03:01
alpha 現在離線 點選這裡查看 alpha 的個人資料 點選這裡給 alpha 傳送一條短訊 查找更多關於 alpha 的文章 增加 alpha 至你的好友列表 編輯/刪除訊息 引用回覆
alpha
資深會員

註冊日期: Oct 2006
來  自:
文章數量: 225

下面的圖就是 MT4 的 Stochastic Oscillator 指標參數控制視窗

至於你說的 "无效指数" 沒提供邏輯 , 所以不會寫

alpha 附帶上了此圖片:

__________________
偶而是不是也感覺有些老
像個大人般的戀愛
有時心情糟
請你相信我在你身邊別忘了

最後由 alpha 在 2008-11-03 03:09 編輯 向版主報告此篇 | 查IP位址
Old Post 2008-11-03 03:05
alpha 現在離線 點選這裡查看 alpha 的個人資料 點選這裡給 alpha 傳送一條短訊 查找更多關於 alpha 的文章 增加 alpha 至你的好友列表 編輯/刪除訊息 引用回覆
jiat
資深會員

註冊日期: Apr 2004
來  自:
文章數量: 119

说明:该指标是GET 波浪理论分析软件的自带指标。GET软件是非常著名的股票分析软件,它是后起之秀,在众多的随机指标中,它惟独选中了这STOCH,可见这指标之非同一般。我对比了所有的随机指标,认为这指标是所有随机指标中最好的,特别是它的无效指示线。

向版主報告此篇 | 查IP位址
Old Post 2008-11-03 19:34
jiat 現在離線 點選這裡查看 jiat 的個人資料 點選這裡給 jiat 傳送一條短訊 查找更多關於 jiat 的文章 增加 jiat 至你的好友列表 編輯/刪除訊息 引用回覆
jiat
資深會員

註冊日期: Apr 2004
來  自:
文章數量: 119

虚假黑棒(Stoch)是GET指标公式

向版主報告此篇 | 查IP位址
Old Post 2008-11-03 22:26
jiat 現在離線 點選這裡查看 jiat 的個人資料 點選這裡給 jiat 傳送一條短訊 查找更多關於 jiat 的文章 增加 jiat 至你的好友列表 編輯/刪除訊息 引用回覆
全部時間均為台灣時間, 現在時間為02:53 發表新主題    回覆主題
  上一主題   下一主題
顯示可列印版本 | 訂閱此主題

論壇跳轉:
主題評分:

論壇規定:
你不可以發表新主題
你不可以回覆文章
你不可以上傳附件
你不可以編輯自己的文章
HTML語法禁止
vB 語法核准
表情符號核准
貼圖語法[IMG]核准
 

本站所有內容未經作者授權禁止轉貼節錄, 發表言論僅供參考勿作為投資決策依據。瀏覽本站請使用 IE 5.5 以上版本, 最佳瀏覽解析度 1024 x 768 全彩。

Powered by: vBulletin Version 2.3.0 - Copyright©2000-, Jelsoft Enterprises Limited.

簡愛洋行 製作 Copyright 2003-. All Rights Reserved.  聯絡我們