Add edit position, close position for MG model.

This commit is contained in:
2025-02-24 21:29:20 -05:00
parent e7abf6747e
commit 7a7126d171
5 changed files with 102 additions and 1 deletions

View File

@@ -72,7 +72,6 @@ namespace TradeBlotter.Model
base.OnPropertyChanged("ActiveMarketValue");
base.OnPropertyChanged("GainLoss");
base.OnPropertyChanged("GainLossPcnt");
// base.OnPropertyChanged("RMultipleAsString");
base.OnPropertyChanged("RMultiple");
base.OnPropertyChanged("EdgeRatioAsString");

View File

@@ -92,6 +92,15 @@ namespace TradeBlotter.Model
ZacksRank=position.ZacksRank;
SharpeRatio = position.SharpeRatio;
}
public MarketData.Generator.Momentum.Position Position
{
get
{
return position;
}
}
public String Symbol
{
get{return position.Symbol;}