I have the typical entry order routine:
if (whatevercondition)
{
EnterLong("Long");
Print((Position.Instrument) + "; Entry Long: ;" + Time[0].Date + "; Price: ;" + Close[0]);
}
The code above creates an output when the trade is opened. I now want to output when that trade is closed.
How can I do that?

Thanks!

Comment