你们好, 有人帮助我

dreamy_eyes

Trader
Jan 9, 2013
1
0
12
大家好。 我是新的交易者。 我希望这里能学习外汇市场, 也可以找到朋友帮助我了解这个市场 。谢谢
 

David Warren

Trader
Jul 10, 2013
2
0
12
嗨!
我是来自 Everest Markets 的关系经理.
我们是 Dukacopy Bank 的合作伙伴。提供可靠的外汇投资服务。
如有兴趣,可联络 -PM 我。

David Warren
Relationship Manager
Everest Markets
 

wuming

Newbie
Jul 30, 2022
2
0
2
40
问个问题mt5中如何获取倒数第10根均线的值
mt4中 iMa = iMA(symbol, period, Ma, 0, MODE_SMA, PRICE_CLOSE, i);
mt5 怎么办,这个i没了,怎么获取i的值
 

Enivid

Administrator
Staff member
Nov 30, 2008
18,532
1,355
144
Odesa
www.earnforex.com
问个问题mt5中如何获取倒数第10根均线的值
mt4中 iMa = iMA(symbol, period, Ma, 0, MODE_SMA, PRICE_CLOSE, i);
mt5 怎么办,这个i没了,怎么获取i的值
MQL5:
int myMA = iMA(Symbol(), Period(), MA_Period, 0, MODE_SMA, PRICE_CLOSE);
double MABuf[];
if (CopyBuffer(myMA, 0, 0, rates_total, MABuf) != rates_total) return 0;
double a = MABuf[10];