指标源码怎样导入文华_文华财经指标源码

hacker|
133

文章目录:

通达信公式指标要怎么修改才能导入文华财经?还是都通用

DIF:=EMA(CLOSE,12)-EMA(CLOSE,26);

DEA:=EMA(DIF,9);

MACD:=(DIF-DEA)*2;

文华财经软件有些函数与通达信不一样,是不可以通用的,建议你找文华的技术部,他妈有专门帮用户编写公式的。

晚上好!我想请教一下: 有哪位大师知道 文华财经赢顺通软件可不可以代入自己的源码?谢谢!

可以,在公式管理那里新建就行了。你的代码或源码要适应文华的才行,有些函数是不通用的,得要一定的水平才行,文华的函数较少,改起来会费些劲吧。

如何将MT4里的指标导入到文华赢顺

是到不进去的,但是可以写啊,文化的赢智就有程序化代码,很好写的,如果不清楚可以发我 我帮你写

怎么才能把倚天屠龙指标导入到文华行情分析软件?请高手指点!

每个股票软件都提供了不下一百种分析技术,用好一两种即可,别纠结于后人依靠前人技术调节出来的指标了。都一回事

谁能帮我将通达信的指标源代码转化成文华财经的?

你这段代码从通达信转成文化财经,只需要把颜色,线的粗细,和用不上的代码都删除了,就可以了

上收:=C;

箱顶:MA(REF(HHV(上收,60),3),5);

箱底:MA(REF(LLV(上收,60),3),5);

变成这样就可以了

MT4的MACD、KD、RSI怎样弄到文华财经上?

MACD

有没有大神能把MT4上的单线MACD指标改成通达信,或者文华财经能用的,万分感谢下面是指标源码:

//+------------------------------------------------------------------+

//|                                                  Custom MACD.mq4 |

//|                   Copyright 2005-2014, MetaQuotes Software Corp. |

//|                                               |

//+------------------------------------------------------------------+

#property copyright   "2005-2014, MetaQuotes Software Corp."

#property link        ""

#property description "Moving Averages Convergence/Divergence"

#property strict

#include MovingAverages.mqh

//--- indicator settings

#property  indicator_separate_window

#property  indicator_buffers 2

#property  indicator_color1  Silver

#property  indicator_color2  Red

#property  indicator_width1  2

//--- 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_calculated0)

limit++;

//--- macd counted in the 1-st buffer

for(i=0; ilimit; 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);

送你  都能用应该

4条大神的评论

  • avatar
    访客 2022-09-24 下午 12:19:18

    );//--- check for input parametersif(InpFastEMA=1 || InpSlowEMA=1 || InpSignalSMA=1 || InpFastEMA=InpSlowEMA){Print("Wrong input parameters");ExtPa

  • avatar
    访客 2022-09-24 上午 09:08:19

    ---if(rates_total=InpSignalSMA || !ExtParameters)return(0);//--- last counted bar will be recountedlimit=ra

  • avatar
    访客 2022-09-24 下午 04:32:37

                               Custom MACD.mq4 |//|                   Copyright 2005-2014, MetaQuotes S

  • avatar
    访客 2022-09-24 上午 06:54:15

    SignalBuffer);//--- name for DataWindow and indicator subwindow labelIndicatorShortName("MACD("+IntegerToString(InpFastEMA)+","+IntegerToStri

发表评论