robbatt

lib_retracement_patterns

robbatt アップデート済   
Library "lib_retracement_patterns"
types and functions for XABCD pattern detection and plotting

method set_tolerances(this, tolerance_Bmin, tolerance_Bmax, tolerance_Cmin, tolerance_Cmax, tolerance_Dmin, tolerance_Dmax)
  sets tolerances for B, C and D retracements. This creates another Pattern instance that is set as tolerances field on the original and will be used for detection instead of the original ratios.
  Namespace types: Pattern

create_config(pattern_line_args, pattern_point_args, name_label_args, retracement_line_args, retracement_label_args, line_args_Dtarget, line_args_completion, line_args_tp1, line_args_tp2, line_args_sl, label_args_completion, label_args_tp1, label_args_tp2, label_args_sl, label_terminal, label_terminal_up_char, label_terminal_down_char, color_bull, color_bear, color_muted, fill_opacity, draw_point_labels, draw_retracements, draw_target_range, draw_levels, hide_shorter_if_shared_legs_greater_than_max, hide_engulfed_pattern, hide_engulfed_pattern_of_same_type, hide_longer_pattern_with_same_X, mute_previous_pattern_when_next_overlaps, keep_failed_patterns)
method direction(this)
  Namespace types: Match

method length(this)
return the length of this pattern, determined by the distance between X and D point
  Namespace types: Match

method height(this)
return the height of this pattern, determined by the distance between the biggest distance between A/C and X/D
  Namespace types: Match

method is_forming(this)
returns true if not complete, not expired and not invalidated
  Namespace types: Match

method tostring(this)
  return a string representation of all Matches in this map
  Namespace types: Match

method tostring(this)
  Namespace types: map<string, Match>

remove_complete_and_expired(this)

method add(this, item)
  Namespace types: map<string, Match>

method is_engulfed_by(this, other)
checks if this Match is engulfed by the other
  Namespace types: Match

method update(tracking_matches, zigzag, patterns, max_age_idx, detect_dir, pattern_minlen, pattern_maxlen, max_sub_waves, max_shared_legs, max_XB_BD_ratio, debug_log)
checks this map of tracking Matches if any of them was completed or invalidated in
  Namespace types: map<string, Match>

method mute(this, mute_color, mute_fill_color)
mute this pattern by making it all one color (lines and labels, for pattern fill there's another)
  Namespace types: Match

method mute(this, mute_color, mute_fill_color)
mute all patterns in this map by making it all one color (lines and labels, for pattern fill there's another)
  Namespace types: map<string, Match>

method hide(this)
hide this pattern by muting it with a transparent color
  Namespace types: Match

method reset_styles(this)
reset the style of a muted or hidden match back to the preset configuration
  Namespace types: Match

method delete(this)
remove the plot of this Match from the chart
  Namespace types: Match

method delete(this)
remove all the plots of the Matches in this map from the chart
  Namespace types: map<string, Match>

method draw(this)
draw this Match on the chart
  Namespace types: Match

method draw(this, config, all_patterns, debug_log)
draw all Matches in this map, considering all other patterns for engulfing and overlapping
  Namespace types: map<string, Match>

method check_hide_or_mute(this, all, config, debug_log)
checks if this pattern needs to be hidden or muted based on other plotted patterns and given configuration
  Namespace types: Match

method add_if(id, item, condition)
convenience function to add a search pattern to a list, only if given condition (input.bool) is true
  Namespace types: Pattern

Pattern
  type to hold retracement ratios and tolerances for this pattern, as well as targets for trades

Config
  allows control of pattern plotting shape and colors, as well as settings for hiding overlapped patterns etc.

Match
  holds all information on a Pattern and a successful match in the chart. Includes XABCD pivot points as well as all Line and Label objects to draw it

リリースノート:
v2 added custom parameter for terminal bar label offset
リリースノート:
v3 export missing draw and delete methods
リリースノート:
v4 fixed memory error, improved loading time
リリースノート:
v5

Added:
method XB_BD_ratio(this)

Setup

Updated:
method set_tolerances(this, tolerance_Bmin, tolerance_Bmax, tolerance_Cmin, tolerance_Cmax, tolerance_Dmin, tolerance_Dmax)

create_config(pattern_line_args, pattern_point_args, name_label_args, retracement_line_args, retracement_label_args, line_Dtarget_args, line_completion, line_tp1, line_tp2, line_sl, label_completion, label_tp1, label_tp2, label_sl, label_terminal, color_bull, color_bear, color_muted, fill_opacity, draw_point_labels, draw_retracements, draw_target_range, draw_levels, hide_shorter_if_shared_legs_greater_than_max, hide_engulfed_pattern, hide_engulfed_pattern_of_same_type, hide_longer_pattern_with_same_X, mute_previous_pattern_when_next_overlaps, keep_failed_patterns)

remove_complete_and_expired(id)

method update(tracking_matches, zigzag, patterns, max_age_idx, detect_dir, pattern_minlen, pattern_maxlen, max_sub_waves, max_shared_legs, max_XB_BD_ratio, debug_log)

Pattern

Config

Match

Removed:
method is_engulfed_by(this, other)

method mute(this, mute_color, mute_fill_color)

method hide(this)

method reset_styles(this)

method delete(this)

method draw(this, config, all_patterns, terminal_label_yoffset, debug_log)

method check_hide_or_mute(this, all, config, debug_log)

method add_if(id, item, condition)
リリースノート:
v6

Added:
method is_engulfed_by(this, other)

method mute(this, mute_color, mute_fill_color)

method hide(this)

method reset_styles(this)

method delete(this)

method draw(this, config, all_patterns, terminal_label_yoffset, debug_log)

method check_hide_or_mute(this, all, config, debug_log)

method add_if(id, item, condition)

Updated:
method set_tolerances(this, tolerance_Bmin, tolerance_Bmax, tolerance_Cmin, tolerance_Cmax, tolerance_Dmin, tolerance_Dmax)

create_config(pattern_line_args, pattern_point_args, name_label_args, retracement_line_args, retracement_label_args, line_args_Dtarget, line_args_completion, line_args_tp1, line_args_tp2, line_args_sl, label_args_completion, label_args_tp1, label_args_tp2, label_args_sl, label_terminal, label_terminal_up_char, label_terminal_down_char, color_bull, color_bear, color_muted, fill_opacity, draw_point_labels, draw_retracements, draw_target_range, draw_levels, hide_shorter_if_shared_legs_greater_than_max, hide_engulfed_pattern, hide_engulfed_pattern_of_same_type, hide_longer_pattern_with_same_X, mute_previous_pattern_when_next_overlaps, keep_failed_patterns)

remove_complete_and_expired(this)

Pattern

Config

Match

Removed:
method XB_BD_ratio(this)

Setup
リリースノート:
v7 version bump lib_pivot v48, lib_plot_objects v35, lib_zig v18, lib_retracement_label v4
リリースノート:
v8 revert different fills
リリースノート:
v9 version bump lib_plot_objects v36, lib_pivot v49, lib_zig v19, lib_retracement_label v5
リリースノート:
v10 fixed pattern fills via flipped lines when drawing
リリースノート:
v11 fix mute and reset_styles for LineFills with flip_support
リリースノート:
v12 version bump lib_pivot v52 and lib_zig v19
リリースノート:
v13 added high potential flag
Pineライブラリ

TradingViewの精神に則り、作者はPineコードをオープンソースライブラリとして公開し、コミュニティの他のPineプログラマーが再利用できるようにしました。作者に敬意を表します!このライブラリを個人的に、または他のオープンソースの投稿で使用することができますが、、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

このライブラリを使用したいですか?

以下の行をコピーして、スクリプト内に貼り付けてください。