MODE_TICKVALUE 오류! - 페이지 4

 
superbem :

문제는 브로커가 모든 것을 구성할 수 없고 소프트웨어가 클라이언트에 일부 데이터를 표시하지 않는 옵션을 남겨 둡니다...

여기 있는 일부 사람들이 이 소프트웨어가 있는 그대로 완벽하다고 생각하는 이유를 모르겠습니다.

완벽하지는 않지만... 브로커 측에서 MODE_TICKVALUE를 구성할 수 있다는 사실은 변하지 않습니다.
 
메타 트레이더의 다음 수정 버전에서 MODE_TICKVALUE는 브로커 측에서 구성할 수 없습니다.
 
나는 MetaQuotes가 우리가 말하는 동안 이 주제에 대한 이사회를 가질 것이라고 확신합니다. 희망을 가지지 마십시오.
 

superbem :

marketinfo MODE_TICKVALUE는 금속, 지수 및 cfd에 대한 예금 통화의 가치를 제공하지 않습니다. Forex만을 위해 일합니다.

 double PointValuePerLot() { // Value in account currency of a Point of Symbol.
     /* In tester I had a sale: open=1.35883 close=1.35736 (0.00147)
     * gain$=97.32/6.62 lots/147 points=$0.10/point or $1.00/pip.
     * IBFX demo/mini       EURUSD TICKVALUE=0.1 MAXLOT=50 LOTSIZE=10,000
     * IBFX demo/standard   EURUSD TICKVALUE=1.0 MAXLOT=50 LOTSIZE=100,000
     *                                  $1.00/point or $10.00/pip.
     *
     * https://forum.mql4.com/33975 CB: MODE_TICKSIZE will usually return the
     * same value as MODE_POINT (or Point for the current symbol), however, an
     * example of where to use MODE_TICKSIZE would be as part of a ratio with
     * MODE_TICKVALUE when performing money management calculations which need
     * to take account of the pair and the account currency. The reason I use
     * this ratio is that although TV and TS may constantly be returned as
     * something like 7.00 and 0.00001 respectively, I've seen this
     * (intermittently) change to 14.00 and 0.00002 respectively (just example
     * tick values to illustrate). */
     return (  MarketInfo( Symbol (), MODE_TICKVALUE)
           / MarketInfo( Symbol (), MODE_TICKSIZE) ); // Not Point.
}