Remove BigCharts pricing feed. Add Robinhood price feed
This commit is contained in:
@@ -316,7 +316,7 @@ namespace MarketData.MarketDataModel
|
||||
// ***************************************************************************************************************************************************************************
|
||||
public class Price
|
||||
{
|
||||
public enum PriceSource{Other=0,BigCharts=1,Yahoo=2,Fidelity=3,Google=4,BarChart=5}; // !!IMPORTANT only add to this list.
|
||||
public enum PriceSource{Other=0,BigCharts=1,Yahoo=2,Fidelity=3,Google=4,BarChart=5,Robinhood=6}; // !!IMPORTANT only add to this list.
|
||||
private String symbol;
|
||||
private DateTime date;
|
||||
private double open;
|
||||
@@ -379,7 +379,9 @@ namespace MarketData.MarketDataModel
|
||||
return "Google";
|
||||
case PriceSource.BarChart :
|
||||
return "BarChart";
|
||||
default :
|
||||
case PriceSource.Robinhood :
|
||||
return "Robinhood";
|
||||
default:
|
||||
return Constants.CONST_QUESTION;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user