導航:首頁 > 黃金交易 > 文華kd交易系統

文華kd交易系統

發布時間:2021-07-28 05:12:35

『壹』 怎麼把這兩個通達信的MACD和KD做成文華財經

通達信的MACD和KD公式,好像可以在文華軟體中使用。
如果不能實用的話,可以聯系文華的客服,他們會給你技術人員的郵箱。
你可以把公式復制發給技術人員,由他們修改給你。
這是我以前做期貨時經常用這樣的辦法修改公式,畢竟軟體不同,函數寫法不一樣。

『貳』 文華財經 交易模型 多時間段 均線

呵呵,不知道怎麼做,以前我也想過這個問題

『叄』 文華財經電腦版分時線同時設置macd和kd指標可以嗎

可以的,文華財經可以設置四個附圖指標
一般文華財經默認附圖指標有兩個,你打開分時圖,設置當前附圖指標為macd和kd指標即可。
如果當前附圖指標只有一個,可以點擊右鍵添加附圖指標。

『肆』 文華期貨怎樣使kd指標每個高點和低點都顯示具體數字

文華的贏順是不能添加指標得下載贏智贏智的半自動版本看能不能添加如果不行就只能是用全自動的8.1版本了這個肯定是可以的

『伍』 文華財經程序化交易編程問題!

文華這抄點確襲實是不方便,這里有個官方解答。
http://www.cxh99.com/2013/02/22/10987.shtml

『陸』 MT4中 STO 為什麼 和 文華中的KD不一樣

iStochastic
計算隨機振盪並返回其值。

double iStochastic(
string symbol, //品種名稱
int timeframe, //時間周期
int Kperiod, // K線周期
int Dperiod, // D 線周期
int slowing, // 慢速
int method, // 平均方法
int price_field, // 價格 (Low/High or Close/Close)
int mode, //指標線索引
int shift // shift
);

參數
symbol
[in] 將計算指標的數據的品種名稱。 NULL表示當前品種。
timeframe
[in] 時間周期。它可以是任何ENUM_TIMEFRAMES 枚舉值。 0表示當前圖表的時間周期。
Kperiod
[in] %K線的期間。
Dperiod
[in] %D線的期間。
slowing
[in] 慢速線值。
method
[in] 移動平均線方法。它可以是任何ENUM_MA_METHOD 枚舉值。
price_field
[in] 價格欄位參數。可以是以下值之一: 0 - Low/High or 1 - Close/Close.
mode
[in] 指標線索引。它可以是任何指標行標識符Indicators line identifiers 枚舉值(0 - MODE_MAIN, 1 - MODE_SIGNAL).
shift
[in] 從指標緩沖區獲取的值的索引(相對於當前柱的偏移,0從當前柱開始)。
返回值
隨機振盪器的數值。
Example:

if(iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_MAIN,0)>iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_SIGNAL,0)) return(0);
為什麼不一樣?使用的移動平均線方法可能不一樣。使用的價格欄位參數也可能不一樣

『柒』 MT4的MACD、KD、RSI怎樣弄到文華財經上

MACD

有沒有大神能把MT4上的單線MACD指標改成通達信,或者文華財經能用的,萬分感謝下面是指標源碼:

//+------------------------------------------------------------------+
//| Custom MACD.mq4 |
//| Copyright 2005-2014, MetaQuotes Software Corp. |
//| http://www.mql4.com|
//+------------------------------------------------------------------+
#property right "2005-2014, MetaQuotes Software Corp."
#property link "http://www.mql4.com"
#property description "Moving Averages Convergence/Divergence"
#property strict


#include <MovingAverages.mqh>


//--- indicator settings
#propertyindicator_separate_window
#propertyindicator_buffers 2
#propertyindicator_color1Silver
#propertyindicator_color2Red
#propertyindicator_width12
//--- indicator parameters
input int InpFastEMA=12; // Fast EMA Period
input int InpSlowEMA=26; // Slow EMA Period
input int InpSignalSMA=9;// Signal SMA Period
//--- indicator buffers
double ExtMacdBuffer[];
double ExtSignalBuffer[];
//--- right input parameters flag
bool ExtParameters=false;


//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int OnInit(void)
{
IndicatorDigits(Digits+1);
//--- drawing settings
SetIndexStyle(0,DRAW_HISTOGRAM);
SetIndexStyle(1,DRAW_LINE);
SetIndexDrawBegin(1,InpSignalSMA);
//--- indicator buffers mapping
SetIndexBuffer(0,ExtMacdBuffer);
SetIndexBuffer(1,ExtSignalBuffer);
//--- name for DataWindow and indicator subwindow label
IndicatorShortName("MACD("+IntegerToString(InpFastEMA)+","+IntegerToString(InpSlowEMA)+","+IntegerToString(InpSignalSMA)+")");
SetIndexLabel(0,"MACD");
SetIndexLabel(1,"Signal");
//--- check for input parameters
if(InpFastEMA<=1 || InpSlowEMA<=1 || InpSignalSMA<=1 || InpFastEMA>=InpSlowEMA)
{
Print("Wrong input parameters");
ExtParameters=false;
return(INIT_FAILED);
}
else
ExtParameters=true;
//--- initialization done
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Moving Averages Convergence/Divergence |
//+------------------------------------------------------------------+
int OnCalculate (const int rates_total,
const int prev_calculated,
const datetime& time[],
const double& open[],
const double& high[],
const double& low[],
const double& close[],
const long& tick_volume[],
const long& volume[],
const int& spread[])
{
int i,limit;
//---
if(rates_total<=InpSignalSMA || !ExtParameters)
return(0);
//--- last counted bar will be recounted
limit=rates_total-prev_calculated;
if(prev_calculated>0)
limit++;
//--- macd counted in the 1-st buffer
for(i=0; i<limit; i++)
ExtMacdBuffer=iMA(NULL,0,InpFastEMA,0,MODE_EMA,PRICE_CLOSE,i)-
iMA(NULL,0,InpSlowEMA,0,MODE_EMA,PRICE_CLOSE,i);
//--- signal line counted in the 2-nd buffer
SimpleMAOnBuffer(rates_total,prev_calculated,0,InpSignalSMA,ExtMacdBuffer,ExtSignalBuffer);
//--- done
return(rates_total);
}
//+------------------------------------------------------------------+

DIFF : EMA(CLOSE,12) - EMA(CLOSE,26), COLORSTICK;
DEA: EMA(DIFF,9);


送你都能用應該

『捌』 請高手編寫KDJ金叉和死叉的程序化交易模型,文華財經上用的,炒期貨的。

只能復選用系統選股公式,方法如下制:在預警 / 設置 / 預警公式設置 / 添加公式 選擇MACD買入點條件選股(參數選用默認的12,26,9)。免費版的通達信無法將自定義公式加入預警公式中。因為MACD買入點條件選股滿足,其它3個條件KDJ金叉、DIF>0、DEA>0都滿足了。

『玖』 在KD交易師軟體如何標記文字

在開店交易是軟體如何標記文字?這個應該是標記不了的。

『拾』 文華財經smart一鍵通下單系統怎麼只顯示裸k線.

各軟體不一樣,你試下吧!

下單系統不清楚!

裸K可以在均線上試著點擊左鍵與右版鍵,或先左再右,出權現刪除指標,再確認下就行了!

MACD你找下「視圖組合」,或在MACD圖上右鍵,看看有沒有,,選

一圖或二圖,這樣會減少個圖框!!或是你把MACD變成成交量,也行!

閱讀全文

與文華kd交易系統相關的資料

熱點內容
北京黑戶貸款150萬 瀏覽:546
北京世聯小額貸款有限公司怎麼樣 瀏覽:16
外匯沙龍會議 瀏覽:52
2019年黑色金屬價格趨勢 瀏覽:556
外匯客戶發掘 瀏覽:324
韓國美元匯率人民幣多少 瀏覽:555
華西證券基金申購費率 瀏覽:760
外匯高手 瀏覽:941
732730何時上市交易 瀏覽:895
黑十字星股票 瀏覽:992
關於布施理財 瀏覽:369
30換人民幣匯率 瀏覽:180
880人民幣等於多少美元 瀏覽:764
上海投資促進中心主任趙曉蕾 瀏覽:320
不良記錄公積金貸款 瀏覽:794
銀行抵押貸款逾期 瀏覽:775
興全多維價值混合基金 瀏覽:244
信託會破產嗎 瀏覽:743
日幣70000摺合人民幣 瀏覽:820
175人民幣是多少台幣 瀏覽:139