Lets say, I am doing MIS Futures BUY or SELL, is there a way to know, if it was a BUY or SELL order I had placed in this code... PositionResponse posResponse = kite.GetPositions(); List dayPositions = posResponse.Day;
foreach (Position dayPos in dayPositions) { // BUY or SELL ?? }
In dayPosition, is there a way to know originally, if it was a BUY or SELL order?