Posted 9/2/2010 14:09:44
|
|
|
|
| I am working on a stock sorting method that uses a list to store all stocks and their technicals so that I can sort them from "best to worst" and then begin to fill a portfolio of trades from the top of the list. The issue I am running into is that the way I envision this method would work requires that I fill the list with the symbols so that as data comes in, the data is pigeon holed to the symbol. I have tried using the Rightedge Symbols property in a similar manner to "Bars" as follows: List<Symbol> stockList = Symbols.Items.ToList();
|
|
Posted 9/2/2010 21:09:49
|
|
|
|
|
|
Posted 9/8/2010 21:56:27
|
|
|
|
| Daniel, Issue solved. Your answer inspired a slightly different approach using startup to fill list with symbols on the first time through. It works. Thanks again, Dave
|
|
|
|