FXCM Australia Real Account Spread is larger than Ask - Bid

 

Hello, please your help with the following:

I was told by my customer manager to look for support directly with you as MT4 is a third party platform.

I noticed that the Ask line is not displaying accurately in my real account. When i get the difference between Ask and Bid, the spread is actually greater than the distance between the Ask line and the Bid line. Please see the image attached to this message.

I had to make a workaround while it's solved.

   if(RoBott_Show_Ask_Line)
      if(ObjectFind(0,ASK_LINE)!= -1)
        {
         ObjectSetDouble(0,ASK_LINE,OBJPROP_PRICE,Ask);
         ObjectSetString(0,ASK_LINE,OBJPROP_TEXT,DoubleToStr((Ask-Bid)/Point,0));
        }
      else
        {
         ObjectCreate(ASK_LINE,OBJ_HLINE,0,0,Ask);
         ObjectSet(ASK_LINE,OBJPROP_STYLE,STYLE_SOLID);
         ObjectSet(ASK_LINE,OBJPROP_COLOR,clrDarkViolet);
         ObjectSet(ASK_LINE,OBJPROP_WIDTH,1);
         ObjectSetString(0,ASK_LINE,OBJPROP_TEXT,DoubleToStr((Ask-Bid)/Point,0));
         ObjectSet(ASK_LINE,OBJPROP_SELECTED,false);
         ObjectSet(ASK_LINE,OBJPROP_SELECTABLE,false);
        }

Thank you.

Best regards,


Rodolfo.

Ask - Bid != Spread


 

Hi,


My MT4 terminal for FXCM real account does not display the Ask and Bid lines correctly, and thus generates me wrong entries and continuosly reaches my stop losses and take profits before what i see visually. Why is this happening only in my real account terminal and not in my other demo terminal?