public string StockName { get; set; }
public double PPS { get; set; }
public bool IsCurrentlyHeld { get; set; }
public double InitialStopPrice {
get { return this.PPS * 0.98; }
public double CurrentStopPrice { get; set; }
public double CurrentPrice { get; set; }
public void manageTailingStop(Holding holding)
while (holding.IsCurrentlyHeld)
double change = holding.PPS - holding.CurrentPrice;