mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-02 05:31:22 +08:00
50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
#
|
|
# Copyright 2012 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 logbook import Logger
|
|
from zipline.algorithm import TradingAlgorithm
|
|
|
|
logger = Logger('Algo')
|
|
|
|
|
|
class BuySellAlgorithm(TradingAlgorithm):
|
|
"""Algorithm that buys and sells alternatingly. The amount for
|
|
each order can be specified. In addition, an offset that will
|
|
quadratically reduce the amount that will be bought can be
|
|
specified.
|
|
|
|
This algorithm is used to test the parameter optimization
|
|
framework. If combined with the UpDown trade source, an offset of
|
|
0 will produce maximum returns.
|
|
|
|
"""
|
|
|
|
def initialize(self, amount=100, offset=0):
|
|
self.amount = amount
|
|
self.buy_or_sell = -1
|
|
self.offset = offset
|
|
self.orders = []
|
|
|
|
def handle_data(self, data):
|
|
order_size = self.buy_or_sell * (self.amount - (self.offset ** 2))
|
|
self.order(self.sids[0], order_size)
|
|
logger.debug("ordering" + str(order_size))
|
|
|
|
#sell next time around.
|
|
self.buy_or_sell *= -1
|
|
|
|
self.orders.append(order_size)
|