gitee.com/quant1x/engine@v1.8.4/docs/strategy.puml (about)

     1  @startuml
     2  
     3  start
     4  :加载板块列表;
     5  if (板块总数大于0) then (true)
     6    :板块排序:金额和涨幅;
     7    if (选出板块前5?) then (yes)
     8      :前5板块内个股排序:涨幅和竞价换手,依赖Tick数据准确性;
     9      if (板块内个股数等于0,最大3只?) then (no)
    10        stop
    11      endif
    12  
    13      if (是否0策略?) then (yes)
    14        :推荐不超过15只个股;
    15      else (no)
    16        :全量的个股列表;
    17      endif
    18      :执行策略x号策略,输出结果集;
    19    endif
    20  else (false)
    21  endif
    22  
    23  if (曲线回归命中数等于0?) then (yes)
    24    :返回;
    25  else
    26    if (量能检测命中?) then (yes)
    27      :置信区间检测;
    28    else (no)
    29    endif
    30  endif
    31  :输出结果集;
    32  stop
    33  
    34  @enduml