|
| 1 | +# QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. |
| 2 | +# Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +# |
| 8 | +# Unless required by applicable law or agreed to in writing, software |
| 9 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +# See the License for the specific language governing permissions and |
| 12 | +# limitations under the License. |
| 13 | + |
| 14 | +from clr import AddReference |
| 15 | +AddReference("System") |
| 16 | +AddReference("QuantConnect.Algorithm") |
| 17 | +AddReference("QuantConnect.Common") |
| 18 | + |
| 19 | +from System import * |
| 20 | +from QuantConnect import * |
| 21 | +from QuantConnect.Data import * |
| 22 | +from QuantConnect.Algorithm import * |
| 23 | +from QuantConnect.Securities import * |
| 24 | +from datetime import datetime |
| 25 | + |
| 26 | +### <summary> |
| 27 | +### In this algortihm, we fetch a list of tickers with corresponding dates from a file on Dropbox. |
| 28 | +### We then create a fine fundamental universe which contains those symbols on their respective dates.### |
| 29 | +### </summary> |
| 30 | +### <meta name="tag" content="download" /> |
| 31 | +### <meta name="tag" content="universes" /> |
| 32 | +### <meta name="tag" content="custom data" /> |
1 | 33 | class DropboxCoarseFineAlgorithm(QCAlgorithm): |
2 | 34 |
|
3 | 35 | def Initialize(self): |
|
0 commit comments