Initial Commit

This commit is contained in:
2025-03-25 21:42:32 -04:00
parent c266eecfeb
commit 30c33d3cfd
247 changed files with 60107 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Text;
using MarketData.Utils;
namespace MarketData.MarketDataModel
{
public class PositionWithDescription : MarketDataModel.Position
{
public PositionWithDescription()
{
}
public PositionWithDescription(MarketDataModel.Position position,String companyName,String description)
{
if(null == position || null==description)return;
this.Symbol=position.Symbol;
this.Shares=position.Shares;
this.MarketValue=position.MarketValue;
this.Exposure=position.Exposure;
this.Description=description;
this.CompanyName=companyName;
}
public String Description{get;set;}
public String CompanyName{get;set;}
}
}