XAUUSD Pip value
The pip value of 1 standard lot, or 100,000 units of XAUUSD is $1,000
The pip value of 1 mini lot, or 10,000 units of XAUUSD is $100
The pip value of 1 micro lot, or 1,000 units of XAUUSD is $10
The pip size of XAUUSD is 0.01, so with the current XAUUSD price of 2004.68, the digits 8 represents 8.0 pips.
当黄金一跌几十美金的时候,也就是止损空间需要放置几千个点。
XAGUSD Pip value
The pip value of 1 standard lot, or 100,000 units of XAGUSD is $1,000
The pip value of 1 mini lot, or 10,000 units of XAGUSD is $100
The pip value of 1 micro lot, or 1,000 units of XAGUSD is $10
The pip size of XAGUSD is 0.01, so with the current XAGUSD price of 22.4902, the digits 902 represents 9.02 pips.
EURUSD Pip value
The pip value of 1 standard lot, or 100,000 units of EURUSD is $10
The pip value of 1 mini lot, or 10,000 units of EURUSD is $1
The pip value of 1 micro lot, or 1,000 units of EURUSD is $0.1
The pip size of EURUSD is 0.0001, so with the current EURUSD price of 1.07087, the digits 87 represents 8.7 pips.
double Pips(){
int digits = (int)MarketInfo(Symbol(), MODE_DIGITS);
if (StringFind(Symbol(), "XAUUSD", 0) != -1 || StringFind(Symbol(), "GOLD", -1) != -1){
return NormalizeDouble(Point * 10, digits - 1);
}
if(digits == 3 || digits == 5){
return NormalizeDouble(Point * 10, digits - 1);
}
if(digits == 4 || digits == 2){
return Point;
}
return 0;
}