Michael Miller
Michael Miller
  • Michael Miller Trademark Guardian en Boulder, Colorado
  • EE.UU.
  • 162
  • Información
7+ años
experiencia
0
productos
0
versiones demo
0
trabajos
0
señales
0
suscriptores
Michael Miller Trademark Guardian en Boulder, Colorado
For the last 35 years I have been a Pilates instructor. Out of the pursuit of that passion came the awareness of Cornu Tension within the body. My goal in FX is to create a library that returns trading signals between currency pairs based upon the same tension.
Michael Miller
Michael Miller
//+------------------------------------------------------------------+
//| CONVERTING POSITION TYPE TO A STRING |
//+------------------------------------------------------------------+
string PositionTypeToString(int position_type)
{
string str="";
//---
if(position_type==0) { str="buy"; }
if(position_type==1) { str="sell"; }
//---
return(str);
}


and then:

string buyorsell;
buyorsell = PositionTypeToString(buyorsell);
Print(buyorsell);

but the only thing that prints out is "buy" no matter what the position--none, buy, sell.

still reaching...
Michael Miller
Michael Miller
I'm trying to figure out the code to determine if there is a buy or a sell position open.
Something like:
int positionType;
positionType = PositionGetInteger(POSITION_TYPE);
Print(positionType);
Michael Miller
Se ha registrado en MQL5.community