㈠ 哪里有MT4 Heikin-ashi指标啊 MT4好像没有这个指标
//+------------------------------------------------------------------+
//| Heiken Ashi.mq4 |
//| Copyright c 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
//| For Heiken Ashi we recommend next chart settings ( press F8 or |
//| select on menu 'Charts'->'Properties...'): |
//| - On 'Color' Tab select 'Black' for 'Line Graph' |
//| - On 'Common' Tab disable 'Chart on Foreground' checkbox and |
//| select 'Line Chart' radiobutton |
//+------------------------------------------------------------------+
#property right "Copyright ?2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Red
#property indicator_color2 White
#property indicator_color3 Red
#property indicator_color4 White
#property indicator_width1 1
#property indicator_width2 1
#property indicator_width3 3
#property indicator_width4 3
//----
extern color color1 = Red;
extern color color2 = White;
extern color color3 = Red;
extern color color4 = White;
//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
//----
int ExtCountedBars=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//|------------------------------------------------------------------|
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM, 0, 1, color1);
SetIndexBuffer(0, ExtMapBuffer1);
SetIndexStyle(1,DRAW_HISTOGRAM, 0, 1, color2);
SetIndexBuffer(1, ExtMapBuffer2);
SetIndexStyle(2,DRAW_HISTOGRAM, 0, 3, color3);
SetIndexBuffer(2, ExtMapBuffer3);
SetIndexStyle(3,DRAW_HISTOGRAM, 0, 3, color4);
SetIndexBuffer(3, ExtMapBuffer4);
//----
SetIndexDrawBegin(0,10);
SetIndexDrawBegin(1,10);
SetIndexDrawBegin(2,10);
SetIndexDrawBegin(3,10);
//---- indicator buffers mapping
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexBuffer(2,ExtMapBuffer3);
SetIndexBuffer(3,ExtMapBuffer4);
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//---- TODO: add your code here
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
double haOpen, haHigh, haLow, haClose;
if(Bars<=10) return(0);
ExtCountedBars=IndicatorCounted();
//---- check for possible errors
if (ExtCountedBars<0) return(-1);
//---- last counted bar will be recounted
if (ExtCountedBars>0) ExtCountedBars--;
int pos=Bars-ExtCountedBars-1;
while(pos>=0)
{
haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;
haClose=(Open[pos]+High[pos]+Low[pos]+Close[pos])/4;
haHigh=MathMax(High[pos], MathMax(haOpen, haClose));
haLow=MathMin(Low[pos], MathMin(haOpen, haClose));
if (haOpen<haClose)
{
ExtMapBuffer1[pos]=haLow;
ExtMapBuffer2[pos]=haHigh;
}
else
{
ExtMapBuffer1[pos]=haHigh;
ExtMapBuffer2[pos]=haLow;
}
ExtMapBuffer3[pos]=haOpen;
ExtMapBuffer4[pos]=haClose;
pos--;
}
//----
return(0);
}
//+------------------------------------------------------------------+
㈡ heiken ashi指标是什么意思
Heikin-Ashi chart looks like the candlestick chart but the method of calculation and plotting of the candles on the Heikin-Ashi chart is different from the candlestick chart.其实是另类K线。但是其实都是一样的本质,还是多花点时间研究本质的东西,到底什么是趋势,什么是K线,K线的本质思想是什么,别被表面的包装纸看花了眼睛
免费版本的没有具体的数据分析。相反,收费版本的有比较具体的数据分析,比如主力成本、大单买入卖出、机构是否加仓等等。
本人用的是免费版的。
㈣ 外汇行情中有哪些分析指标
技术指标按原理不同可分为MA、MACD、RSI、KDJ等数十个指标,每一种指标都有其回独到的地方,但单就答任何一种技术指标来说,其发出外汇保证金交易信号的准确性要远低于与几种技术指标配合使用的准确性。每一种指标由于在预测行情方面的特点不太一样,预测周期不一样等因素,准确程度也会有区别。
议投资者只要能够同时以3 6个技术指标为主来分析就可以了,超过6个或少于3个都不合适。你可以根据自己的喜好、投资的大小、短线或长线操作等选择几个最适合自身情况的指标群,称之为外汇保证金交易的“核心指标”。
技术分析的优势就在于它的客观准确,但是对它的判断投资者却不能盲从于表面上看到的,还要加进去自己的分析和判断。这样你的交易才不是盲目没有根据的,也不是随机没有计划的,才能最大限度的接近成功,外汇保证金交易不是一场赌博而应该认真对待,做好计划。
㈤ MT4里这种K线方法怎么设置的啊
heiken ashi 普通蜡烛图的平滑版,在mt4指标里找;这个不必过多追求蜡烛图的单一形态,给分啦。
㈥ 把通达信简单的指标转化MT4能用的指标
MT4上有个叫heiken ashi的指标,就是这个。
㈦ 请哪位大仙帮忙一下,把Heikin-Ashi (MT4是叫ichmoku)蜡烛指标编成博易大师的指标,谢谢!!
可以到automt4那里有自定制编程可以做到
㈧ mt4 Heiken Ash主图指标如何改成副图指标.
右击Heiken Ash 选修改
chart 改成 separate 改好按下F7 重新拖入即可
㈨ 请问Heiken Ashi这个指标有未来函数吗
HA的算法粗略的说是取中间值,比K线要滞后,当成趋势指标的话跟均线差不多,当拐点指标可以反应乖离率。这是没有未来函数的,比K线滞后能有未来函数?