Michael Miller / Profilo
- Informazioni
7+ anni
esperienza
|
0
prodotti
|
0
versioni demo
|
0
lavori
|
0
segnali
|
0
iscritti
|
Michael Miller Trademark Guardian
al
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
//+------------------------------------------------------------------+
//| 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...
//| 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
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);
Something like:
int positionType;
positionType = PositionGetInteger(POSITION_TYPE);
Print(positionType);
: