• K线形态识别_长十字线


    写在前面:
    1. 本文中提到的“K线形态查看工具”的具体使用操作请查看该博文
    2. K线形体所处背景,诸如处在上升趋势、下降趋势、盘整等,背景内容在K线形态策略代码中没有体现;
    3. 文中知识内容来自书籍《K线技术分析》by邱立波。

    目录

    解说

    技术特征

    技术含义

    K线形态策略代码

    结果


    解说

            长十字线是上下影线都很长的同价位线。至于影线多长才算是长十字线,市场上没有一个统一的标准,交易者凭感觉很容易就能区分。

             出现长十字线是转势信号。上影线越长,表示卖盘越重;下影线越长,表明买盘越强。

            长十字线的收盘价和开盘价相同,表明多空双方最终握手言和,谁也没能以绝对优势压倒对方。但长长的上下影线告诉交易者,平静的开盘和收盘之间曾经经历了一场极其残酷的拉锯战,双方的阵地都曾经易手,甚至有可能数度出现攻防互换。无论是战争还是交易,平衡从来都是短暂的,僵局马上就会打破。谁会取得最终的胜利呢?在此之前,如果其中一方一直在乘胜追击,那么现在突然遭遇如此激烈的抵抗,很显然多空双方的力量对比正在发生变化。因此,长十字线出现在高价位或低价位区域,常常意味着趋势即将出现反转。

    技术特征

    1)开盘价和收盘价相同。

    2)上下影线很长。

    3)上涨和下跌过程中都会出现。

    技术含义

    1)在股价已有较大涨幅后出现,为见顶信号。

    2)在股价有较大跌幅后出现长十字线为见底信号。

    3)在上涨途中出现长十字线,继续看涨。持仓不动。

    4)在下跌途中出现长十字线,继续看跌。持币观望。

    K线形态策略代码

    1. def excute_strategy(daily_file_path):
    2. '''
    3. 名称:长十字线
    4. 识别:上下影线都很长, 同价位
    5. 自定义:
    6. 1. 影线很长=》超过上一交易日价格2%;
    7. 前置条件:计算时间区间 2021-01-01 到 2022-01-01
    8. :param daily_file_path: 股票日数据文件路径
    9. :return:
    10. '''
    11. import pandas as pd
    12. import os
    13. start_date_str = '2021-01-01'
    14. end_date_str = '2022-01-01'
    15. df = pd.read_csv(daily_file_path,encoding='utf-8')
    16. # 删除停牌的数据
    17. df = df.loc[df['openPrice'] > 0].copy()
    18. df['o_date'] = df['tradeDate']
    19. df['o_date'] = pd.to_datetime(df['o_date'])
    20. df = df.loc[(df['o_date'] >= start_date_str) & (df['o_date']<=end_date_str)].copy()
    21. # 保存未复权收盘价数据
    22. df['close'] = df['closePrice']
    23. # 计算前复权数据
    24. df['openPrice'] = df['openPrice'] * df['accumAdjFactor']
    25. df['closePrice'] = df['closePrice'] * df['accumAdjFactor']
    26. df['highestPrice'] = df['highestPrice'] * df['accumAdjFactor']
    27. df['lowestPrice'] = df['lowestPrice'] * df['accumAdjFactor']
    28. # 开始计算
    29. df.loc[df['closePrice']>=df['openPrice'],'type'] = 1
    30. df.loc[df['closePrice']'openPrice'],'type'] = -1
    31. df['body_length'] = abs(df['closePrice'] - df['openPrice'])
    32. df.loc[df['type']==1,'top_shadow_length'] = df['highestPrice'] - df['closePrice']
    33. df.loc[df['type']==-1,'top_shadow_length'] = df['highestPrice'] - df['openPrice']
    34. df.loc[df['type']==1,'bottom_shadow_length'] = df['openPrice'] - df['lowestPrice']
    35. df.loc[df['type']==-1,'bottom_shadow_length'] = df['closePrice'] - df['lowestPrice']
    36. df['signal'] = 0
    37. df['signal_name'] = ''
    38. long_len = 0.02
    39. df.loc[(df['body_length']==0) & (df['top_shadow_length']/df['closePrice'].shift(1)>=long_len) & (df['bottom_shadow_length']/df['closePrice'].shift(1)>=long_len),'signal'] = 1
    40. df.loc[(df['body_length']==0) & (df['top_shadow_length']/df['closePrice'].shift(1)>=long_len) & (df['bottom_shadow_length']/df['closePrice'].shift(1)>=long_len),'ext_0'] = (df['top_shadow_length']/df['closePrice'].shift(1))*100
    41. df.loc[(df['body_length']==0) & (df['top_shadow_length']/df['closePrice'].shift(1)>=long_len) & (df['bottom_shadow_length']/df['closePrice'].shift(1)>=long_len),'ext_1'] = (df['bottom_shadow_length']/df['closePrice'].shift(1))*100
    42. df = df.round({'ext_0':5,'ext_1':5})
    43. df['signal_name'] = df['ext_0'].astype('str') + ';' + df['ext_1'].astype('str')
    44. file_name = os.path.basename(daily_file_path)
    45. title_str = file_name.split('.')[0]
    46. line_data = {
    47. 'title_str':title_str,
    48. 'whole_header':['日期','收','开','高','低'],
    49. 'whole_df':df,
    50. 'whole_pd_header':['tradeDate','closePrice','openPrice','highestPrice','lowestPrice'],
    51. 'start_date_str':start_date_str,
    52. 'end_date_str':end_date_str,
    53. 'signal_type':'line'
    54. }
    55. return line_data

    结果

  • 相关阅读:
    VisionPro学习笔记(6)——如何使用QuickBuild
    细胞图像数据的主动学习
    成功的外贸开发信是怎样?开发信范例推荐?
    【JavaWeb】第二章 CSS
    从硬件“卷”到UI交互,车企怎样才能掌握智能化「灵魂」
    excel文件预览: luckyexcel+luckysheet
    开源知识付费APP代码分析
    TensorRT开发环境搭建
    Spring-Cloud-Ribbon-02
    磁盘管理:硬盘、分区、文件系统 | 查看磁盘信息的方法
  • 原文地址:https://blog.csdn.net/m0_37967652/article/details/127725685