Michael Miller
Michael Miller
  • Information
7+ Jahre
Erfahrung
0
Produkte
0
Demoversionen
0
Jobs
0
Signale
0
Abonnenten
Michael Miller Trademark Guardian in 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
Hat sich auf MQL5.community registriert