datayes2015
V2EX  ›  投资

通联情绪指标策略,回测结果还不错

  •  
  •   datayes2015 · Jul 10, 2015 · 3766 views
    This topic created in 3988 days ago, the information mentioned may be changed or developed.
    start = pd.datetime(2013, 11, 1)
    end = pd.datetime(2014, 11, 1)
    benchmark = 'HS300'
    universe = read('3b_ticker.txt').split(',')
    capital_base = 100000
    csvs = ['3b_news.csv']

    def initialize(account):
    add_history('hist1', 1)

    def handle_data(account, data):
    for stock in universe:
    if (stock not in account.hist1) or ('emotion' not in account.hist1[stock].columns):
    continue

    sig = account.hist1[stock].iloc[0,:]['emotion']
    if sig > 0.2 and account.position.stkpos.get(stock, 0)==0:
    order(stock, 100)
    elif sig < 0 and account.position.stkpos.get(stock, 0)>0:
    order_to(stock, 0)

    年化收益率
    24.4%
    基准年化收益率
    5.3%
    阿尔法
    0.19
    贝塔
    0.77
    夏普比率
    1.08
    收益波动率
    0.19
    信息比率
    1.18
    最大回撤
    17.9%

    原帖地址: https://uqer.io/community/share/548111daf9f06c8e7733670a
    1 replies    2015-07-13 14:03:43 +08:00
    geeklian
        1
    geeklian  
       Jul 13, 2015 via iPhone
    技术分析现在A股没啥用...
    中央领导一句话,结果要么千股涨停要么跌停...
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5801 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 33ms · UTC 02:54 · PVG 10:54 · LAX 19:54 · JFK 22:54
    ♥ Do have faith in what you're doing.