Files
2024-02-22 14:52:53 -05:00

43 lines
792 B
C#

using System;
using System.Collections.Generic;
namespace MarketData.MarketDataModel
{
public class DMADeviations : List<DMADeviation>
{
public DMADeviations()
{
}
}
public class DMADeviation
{
private String symbol;
private DateTime date;
private double stdevPrice;
private double currentPrice;
public DMADeviation()
{
}
public String Symbol
{
get { return symbol; }
set { symbol = value; }
}
public DateTime Date
{
get { return date; }
set { date = value; }
}
public double StDevPrice
{
get { return stdevPrice; }
set { stdevPrice = value; }
}
public double CurrentPrice
{
get { return currentPrice; }
set { currentPrice = value; }
}
}
}