LOGIN
username
password
@loginError
UserName: @Session.UserName
@foreach(PurchasedStock cur in Session.TrackedStocks){
@cur.Symbol
@cur.Quantity
@cur.PurchasePrice
@cur.PurchaseDate.ToString("M-D-YYYY")
}
Actions
@PredictError
@foreach (stockPredictionPair cur in predictions){
@if (cur.Movement == -1){
}
Symbol: @cur.Symbol
@if (cur.Movement == -1){
Sell
} else if (cur.Movement == 1){Buy
} else{Hold
}