欧美一级a免费放视频,欧美一级a免费放视频_丰满年轻岳欲乱中文字幕电影_欧美成人性一区二区三区_av不卡网站,99久久精品产品给合免费视频,色综合黑人无码另类字幕,特级免费黄片,看黃色录像片,色色资源站无码AV网址,暖暖 免费 日本 在线播放,欧美com

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫聚寬量化策略 聚寬代碼代寫

時(shí)間:2024-03-28  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)


'''
1,、首先計(jì)算:
(1)N日High的最高價(jià)HH, N日Close的最低價(jià)LC;
(2)N日Close的最高價(jià)HC,N日Low的最低價(jià)LL;
(3)Range = Max(HH-LC,HC-LL)
(4)BuyLine = Open + K1*Range
(5)SellLine = Open + K2*Range

2.構(gòu)造系統(tǒng)
(1)當(dāng)價(jià)格向上突破上軌時(shí),,如果當(dāng)時(shí)持有空倉,則先平倉,,再開多倉,;如果沒有持倉,則直接開多倉,;
(2)當(dāng)價(jià)格向下突破下軌時(shí),,如果當(dāng)時(shí)持有多倉,則先平倉,,再開空倉,;如果沒有持倉,則直接開空倉,;
'''

def initialize(context):
    # 設(shè)定滬深300作為基準(zhǔn)
    set_benchmark('000300.XSHG')
    # True為開啟動(dòng)態(tài)復(fù)權(quán)模式,,使用真實(shí)價(jià)格交易
    set_option('use_real_price', True) 
    # 設(shè)定成交量比例
    set_option('order_volume_ratio', 1)
    # 關(guān)閉訂單提醒
    # log.set_level('order', 'error')
    # 設(shè)定期貨保證金比例
    set_option('futures_margin_rate', 0.3)
    # 設(shè)定操作金融期貨
    set_subportfolios([SubPortfolioConfig(cash=context.portfolio.cash, type='index_futures')])
    # 金融期貨close_today_commission可不用設(shè)定,平今倉默認(rèn)0.0023
    set_order_cost(OrderCost(open_commission=0.000023, close_commission=0.000023, close_today_commission=0.0023), type='index_futures')
    #運(yùn)行函數(shù)
    run_daily(set_info, time='before_open', reference_security='IF1512.CCFX')
    run_daily(trade, time='every_bar', reference_security='IF1512.CCFX')

def set_info(context):
    # 分鐘計(jì)數(shù)
    g.minute_count = 0

def trade(context):
    # 開盤第一分鐘
    if g.minute_count == 0:
        # 獲取當(dāng)月可交易的 HS300 股指期貨合約
        g.security = get_stock_index_futrue_code(context,symbol='IF',month='current_month')
        # 獲取 BuyLine, SellLine
        g.BuyLine, g.SellLine = dual_thrust(g.security,n=10,K1=0.5,K2=0.5)
        # 分鐘計(jì)數(shù)
        g.minute_count += 1
    # 開盤第一分鐘之后
    else:
        # 獲取標(biāo)的可平多倉
        long_closeable_amount = context.portfolio.long_positions[g.security].closeable_amount
        # 獲取標(biāo)的可平空倉
        short_closeable_amount = context.portfolio.short_positions[g.security].closeable_amount
        # 獲取標(biāo)的的最新價(jià)
        current_price = attribute_history(g.security, 1, '1m', ['close'], df=False)['close'][0]

        # 當(dāng)價(jià)格向上突破上軌時(shí)
        if current_price > g.BuyLine:
            # 如果當(dāng)時(shí)持有空倉,,則先平倉,,再開多倉;
            if(short_closeable_amount>0):
                # 平空倉
                order_target(g.security, 0 , side='short')
                # 開1手多倉
                order(g.security, 1, side='long')
                log.info('持有空倉,,先平倉,,再開多倉')
            # 如果沒有持倉,則直接開多倉,;
            elif (short_closeable_amount == 0) and (long_closeable_amount == 0):
                # 開1手多倉
                order(g.security, 1, side='long')
                log.info('沒有持倉,,開多倉')
        # 當(dāng)價(jià)格向下突破下軌時(shí)
        elif current_price < g.SellLine:
            # 如果當(dāng)時(shí)持有多倉,則先平倉,,再開空倉,;
            if (long_closeable_amount>0):
                # 平多倉
                order_target(g.security, 0 , side='long')
                # 開1手空倉
                order(g.security, 1, side='short')
                log.info('持有多倉,先平倉,,再開空倉')
            # 如果沒有持倉,,則直接開空倉;
            elif (short_closeable_amount == 0) and (long_closeable_amount == 0):
                # 開1手空倉
                order(g.security, 1, side='short')
                log.info('沒有持倉,,則直接開空倉')

        # 分鐘計(jì)數(shù)
        g.minute_count += 1

## 獲取 BuyLine 和 SellLine
def dual_thrust(security,n,K1,K2):
    hist = attribute_history(security, n, '1d', ['high','low','close','open'], df=False)
    HH = max(hist['high'])
    LC = min(hist['close'])
    HC = max(hist['close'])
    LL = min(hist['low'])
    Open = get_current_data()[security].day_open
    # 獲取 Range
    Range = max((HH-LC),(HC-LL))
    # 計(jì)算BuyLine 和 SellLine
    
    BuyLine = Open + K1 * Range
    SellLine = Open - K2 * Range
    # 返回結(jié)果
    return BuyLine, SellLine

## 獲取當(dāng)天時(shí)間正在交易的股指期貨合約
def get_stock_index_futrue_code(context,symbol,month='current_month'):
    '''
    獲取當(dāng)天時(shí)間正在交易的股指期貨合約,。其中:
    symbol:
            'IF' #滬深300指數(shù)期貨
            'IC' #中證500股指期貨
            'IH' #上證50股指期貨
    month:
            'current_month' #當(dāng)月
            'next_month'    #隔月
            'next_quarter'  #下季
            'skip_quarter'  #隔季
    '''
    display_name_dict = {'IF':'滬深300指數(shù)期貨','IC':'中證500股指期貨','IH':'上證50股指期貨'}
    month_dict = {'current_month':0, 'next_month':1, 'next_quarter':2, 'skip_quarter':3}

    display_name = display_name_dict[symbol]
    n = month_dict[month]
    dt = context.current_dt.date()
    a = get_all_securities(types=['futures'], date=dt)
    try:
        df = a[(a.display_name == display_name) & (a.start_date <= dt) & (a.end_date >= dt)]
        if (len(df)>4) and (month in ('next_quarter','skip_quarter')):
            return df.index[n+1]
        else:
            return df.index[n]
    except:
        return 'WARRING: 無此合約'

# 獲取金融期貨合約到期日
def get_CCFX_end_date(fature_code):
    return get_security_info(fature_code).end_date



如有需要,請加QQ:88652583 或微信: 88652583

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫CPSC 217,、代做python編程設(shè)計(jì)
  • 下一篇:菲律賓機(jī)場小黑屋 &#160;為什么會(huì)被關(guān)進(jìn)菲律賓小黑屋
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    出評 開團(tuán)工具
    出評 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    戴納斯帝壁掛爐全國售后服務(wù)電話24小時(shí)官網(wǎng)400(全國服務(wù)熱線)
    戴納斯帝壁掛爐全國售后服務(wù)電話24小時(shí)官網(wǎng)
    菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話24小時(shí)服務(wù)熱線
    菲斯曼壁掛爐全國統(tǒng)一400售后維修服務(wù)電話2
    美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時(shí)客服熱線
    美的熱水器售后服務(wù)技術(shù)咨詢電話全國24小時(shí)
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士3號線
    合肥機(jī)場巴士3號線
  • 短信驗(yàn)證碼 酒店vi設(shè)計(jì) 投資移民

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045