Need EA programmer to fix my EA because of 5th decimal change at IBFX

 
Need EA programmer to fix my EA because of 5th decimal change at IBFX. My original programmer is on vacation and unreachable. Todd Tolman, 801.651.1790, or ttolman@prodigix.com.
 
ttolman:
Need EA programmer to fix my EA because of 5th decimal change at IBFX. My original programmer is on vacation and unreachable. Todd Tolman, 801.651.1790, or ttolman@prodigix.com.
Adjust TP, SL, AND slippage.
//++++ These are adjusted for 5 digit brokers.
int     pips2points;    // slippage  3 pips    3=points    30=points
double  pips2dbl;       // Stoploss 15 pips    0.0015      0.00150
int     Digits.pips;    // DoubleToStr(dbl/pips2dbl, Digits.pips)
int     init(){
    if (Digits == 5 || Digits == 3){    // Adjust for five (5) digit brokers.
                pips2dbl    = Point*10; pips2points = 10;   Digits.pips = 1;
    } else {    pips2dbl    = Point;    pips2points =  1;   Digits.pips = 0; }
    // OrderSend(... Slippage.Pips * pips2points, Bid - StopLossPips * pips2dbl
Open the order and THEN set stops.
int ticket = OrderSend(...
if (ticket > 0){
  OrderSelect(ticket, by ticket)
  if( !OrderModify(ticket, OrderOpenPrice(), SL, TP, 0) ) Alert(...
 
ttolman:
Need EA programmer to fix my EA because of 5th decimal change at IBFX. My original programmer is on vacation and unreachable. Todd Tolman, 801.651.1790


if i could ask, didn't IBFX got to 5 digits a long time ago? why the sudden urgency?

 

There are both 4 and 5 digit demo accounts available as of Feb 2010. The live accounts are regular, mini, and no swap types. Don't know if they have a 5 digit live yet.

Why are there 4th decimal prices on some accounts, and 5th decimal on others?

IBFX has 6 choices for live accounts and 2 choices for demo accounts.



Reason: