mt4中如何调出macd(mt4中macd背离)

股票学习 2023-01-15 18:47www.16816898.cn学习炒股票
  • mt4里的macd指标怎么用
  • ios系统怎么使用mt4打开下面那个附窗口?就是可以看得MACD指标的那个窗口?
  • 怎样把两条线的macd设置到mt4的外汇软件里
  • MT4平台中的macd只有一根慢线,怎么样才能调出一根快线
  • 求外汇MT4交易平台MACD顶、底背离监测代码
  • 怎么把MT4中的macd搞到股票里 高手快教教我
  • MT4里的单线MACD指标转化为双线的MACD的方法
  • 1、mt4里的macd指标怎么用

    指标用法都是一样的,你是不是想问怎么调出来?

    2、ios系统怎么使用mt4打开下面那个附窗口?就是可以看得MACD指标的那个窗口?

    MT4里的默认MACD是没有双线的,如果要双线的可以去志荣66网下载,MACD的用法主要是看它处于零轴的位置,就是背离。指标的用法一下是说不清的,想学的话可以联系我。

    3、怎样把两条线的macd设置到mt4的外汇软件里

    不用那么麻烦啊
    你通过软件里的技术指标里面就有啊~

    4、MT4平台中的macd只有一根慢线,怎么样才能调出一根快线

    国内股票软件包括通达信,大智慧,同花顺等软件中的 MACD其实是经过改编的。

    纯正的MACD才是MT4平台上这种, 两者的区别在于

    1. MACD的dif线    =  MT4上的柱子 (你所说的慢线)哈哈哈

    2. MACD的dea线  =  MT4上的线条  (你所说的快线)哈哈哈

    3. MACD的MACD值是通过dif和dea计算出来的。

    5、求外汇MT4交易平台MACD顶、底背离监测代码

    MACD是外汇和股票最常用的一个指标
    你如果需要编写指标,要会基本的数据库和语言的基础知识。
    有现成的MACD双线指标你可以下载下应该基本上符合了你的要求了。如果让人家专业人员给你编写估计要真实人民币了。
    只能帮到这些了。

    6、怎么把MT4中的macd搞到股票里 高手快教教我

    MACD = EMA(CLOSE, 12)-EMA(CLOSE, 26) ;SIGNAL = SMA(MACD, 9) ; 这就是外汇里用的单线型,也就是说,单线型的macd=股票双线型的diff。

    7、MT4里的单线MACD指标转化为双线的MACD的方法

    需要修改一下指标参数计算。
    //+------------------------------------------------------------------+
    //| MACD_Billin.mq4 |
    //| Copyright ?2005, MetaQuotes Softare Corp. |
    //| http://.metaquotes. |
    //+------------------------------------------------------------------+
    #property copyright "Copyright ?2005, MetaQuotes Softare Corp."
    #property link "http://.metaquotes."
    #property indicator_separate_indo
    #property indicator_buffers 3
    #property indicator_color1 Aqua
    #property indicator_color2 Red
    #property indicator_color3 Silver
    //---- input parameters
    extern int FastEMA=12;
    extern int SloEMA=26;
    extern int SignalSMA=9;
    //---- buffers
    double ExtMapBuffer3[];
    //---- indicator buffers
    double ExtSilverBuffer[];
    double ExtRedBuffer[];
    double ExtAquaBuffer[];
    //+------------------------------------------------------------------+
    //| Custom indicator initialization function |
    //+------------------------------------------------------------------+
    int init()
    {
    //---- draing settings
    SetIndexStyle(0,DRAW_LINE);
    SetIndexStyle(1,DRAW_LINE);
    SetIndexStyle(2,DRAW_HISTOGRAM);
    SetIndexBuffer(2,ExtMapBuffer3);
    //----
    SetIndexDraBegin(1,SignalSMA);
    IndicatorDigits(5);
    //---- indicator buffers mapping
    SetIndexBuffer(0, ExtSilverBuffer);
    SetIndexBuffer(1, ExtRedBuffer);
    SetIndexBuffer(2, ExtAquaBuffer);
    //---- name for DataWindo and indicator subindo label
    IndicatorShortName("BillWin_MACD("+FastEMA+","+SloEMA+","+SignalSMA+")");
    //---- initialization done
    return(0);
    }
    //+------------------------------------------------------------------+
    //| Moving Averages Convergence/Divergence |
    //+------------------------------------------------------------------+
    int start()
    {
    int limit;
    int counted_bars=IndicatorCounted();
    //---- check for possible errors
    if(counted_bars<0) return(-1);
    //---- last counted bar ill be recounted
    if(counted_bars>0) counted_bars--;
    limit=Bars-counted_bars;
    //---- macd counted in the 1-st buffer
    for(int i=0; i<limit; i++)
    ExtSilverBuffer=iMA(NULL,0,FastEMA,0,MODE_EMA,PRICE_CLOSE,i)-iMA(NULL,0,SloEMA,0,MODE_EMA,PRICE_CLOSE,i);
    //---- signal line counted in the 2-nd buffer
    for(i=0; i<limit; i++)
    ExtRedBuffer=iMAOnArray(ExtSilverBuffer,Bars,SignalSMA,0,MODE_SMA,i);
    for(i=0; i<limit; i++)
    ExtAquaBuffer=iMA(NULL,0,FastEMA,0,MODE_EMA,PRICE_CLOSE,i)-iMA(NULL,0,SloEMA,0,MODE_EMA,PRICE_CLOSE,i) - iMAOnArray(ExtSilverBuffer,Bars,SignalSMA,0,MODE_SMA,i);
    //---- done
    return(0);
    }
    //+------------------------------------------------------------------+。

    Copyright © 2016-2025 www.16816898.cn 168股票网 版权所有 Power by