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

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

代寫(xiě)聚寬量化策略 聚寬代碼代寫(xiě)

時(shí)間:2024-03-28  來(lái)源:合肥網(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í)持有空倉(cāng),,則先平倉(cāng),,再開(kāi)多倉(cāng);如果沒(méi)有持倉(cāng),,則直接開(kāi)多倉(cāng),;
(2)當(dāng)價(jià)格向下突破下軌時(shí),如果當(dāng)時(shí)持有多倉(cāng),,則先平倉(cāng),,再開(kāi)空倉(cāng);如果沒(méi)有持倉(cāng),,則直接開(kāi)空倉(cāng),;
'''

def initialize(context):
    # 設(shè)定滬深300作為基準(zhǔn)
    set_benchmark('000300.XSHG')
    # True為開(kāi)啟動(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è)定,,平今倉(cāng)默認(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):
    # 開(kāi)盤(pán)第一分鐘
    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
    # 開(kāi)盤(pán)第一分鐘之后
    else:
        # 獲取標(biāo)的可平多倉(cāng)
        long_closeable_amount = context.portfolio.long_positions[g.security].closeable_amount
        # 獲取標(biāo)的可平空倉(cāng)
        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í)持有空倉(cāng),,則先平倉(cāng),再開(kāi)多倉(cāng),;
            if(short_closeable_amount>0):
                # 平空倉(cāng)
                order_target(g.security, 0 , side='short')
                # 開(kāi)1手多倉(cāng)
                order(g.security, 1, side='long')
                log.info('持有空倉(cāng),,先平倉(cāng),再開(kāi)多倉(cāng)')
            # 如果沒(méi)有持倉(cāng),則直接開(kāi)多倉(cāng),;
            elif (short_closeable_amount == 0) and (long_closeable_amount == 0):
                # 開(kāi)1手多倉(cāng)
                order(g.security, 1, side='long')
                log.info('沒(méi)有持倉(cāng),,開(kāi)多倉(cāng)')
        # 當(dāng)價(jià)格向下突破下軌時(shí)
        elif current_price < g.SellLine:
            # 如果當(dāng)時(shí)持有多倉(cāng),則先平倉(cāng),,再開(kāi)空倉(cāng),;
            if (long_closeable_amount>0):
                # 平多倉(cāng)
                order_target(g.security, 0 , side='long')
                # 開(kāi)1手空倉(cāng)
                order(g.security, 1, side='short')
                log.info('持有多倉(cāng),先平倉(cāng),,再開(kāi)空倉(cāng)')
            # 如果沒(méi)有持倉(cāng),,則直接開(kāi)空倉(cāng);
            elif (short_closeable_amount == 0) and (long_closeable_amount == 0):
                # 開(kāi)1手空倉(cāng)
                order(g.security, 1, side='short')
                log.info('沒(méi)有持倉(cāng),,則直接開(kāi)空倉(cāng)')

        # 分鐘計(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: 無(wú)此合約'

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



如有需要,請(qǐng)加QQ:88652583 或微信: 88652583

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

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析,?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開(kāi)團(tuán)工具
    出評(píng) 開(kāi)團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 酒店vi設(shè)計(jì) NBA直播 幣安下載

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

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