mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-28 11:18:19 +08:00
* Updated cython build scripts * Updated setup.py to to install catalyst package * Updated momentum example to use catalyst package * catalyst executable now supports loading pipelines from multiple bundles
55 lines
1.6 KiB
Python
55 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2014 Quantopian, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from catalyst.api import order, record, symbol
|
|
|
|
|
|
def initialize(context):
|
|
context.asset = symbol('AAPL')
|
|
|
|
|
|
def handle_data(context, data):
|
|
order(context.asset, 10)
|
|
record(AAPL=data.current(context.asset, 'price'))
|
|
|
|
|
|
# Note: this function can be removed if running
|
|
# this algorithm on quantopian.com
|
|
def analyze(context=None, results=None):
|
|
import matplotlib.pyplot as plt
|
|
# Plot the portfolio and asset data.
|
|
ax1 = plt.subplot(211)
|
|
results.portfolio_value.plot(ax=ax1)
|
|
ax1.set_ylabel('Portfolio value (USD)')
|
|
ax2 = plt.subplot(212, sharex=ax1)
|
|
results.AAPL.plot(ax=ax2)
|
|
ax2.set_ylabel('AAPL price (USD)')
|
|
|
|
# Show the plot.
|
|
plt.gcf().set_size_inches(18, 8)
|
|
plt.show()
|
|
|
|
|
|
def _test_args():
|
|
"""Extra arguments to use when catalyst's automated tests run this example.
|
|
"""
|
|
import pandas as pd
|
|
|
|
return {
|
|
'start': pd.Timestamp('2014-01-01', tz='utc'),
|
|
'end': pd.Timestamp('2014-11-01', tz='utc'),
|
|
}
|