Initial Commit
This commit is contained in:
42
MarketData/MarketDataLib/MarketDataModel/DMADeviation.cs
Executable file
42
MarketData/MarketDataLib/MarketDataModel/DMADeviation.cs
Executable file
@@ -0,0 +1,42 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user