algorembrant commited on
Commit
a51f593
·
verified ·
1 Parent(s): 5a051dc

Upload 75 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
1C_patterns.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Complete 1-Candle Patterns
2
+
3
+ Based on the core definitions, here are all the possible configurations for a single 1-candle pattern (Bullish and Bearish).
4
+
5
+ ## Bullish Patterns (C > O)
6
+
7
+ ### Bull_1
8
+ - **Definition**: High > Close > Open > Low. A standard bullish candle with both an upper and lower shadow (wick).
9
+ - **Logic**:
10
+ ```text
11
+ H > C & O & L
12
+ C > O & L
13
+ O > L
14
+ ```
15
+
16
+ ### Bull_2
17
+ - **Definition**: Close = High > Open > Low. A bullish candle that closes precisely at its highest price, indicating strong upward momentum into the close (no upper wick).
18
+ - **Logic**:
19
+ ```text
20
+ (C = H) > O & L
21
+ C > O & L
22
+ O > L
23
+ ```
24
+
25
+ ### Bull_3
26
+ - **Definition**: High > Close > Open = Low. A bullish candle that opened at its absolute lowest point, showing buyers dominated continually from the very beginning (no lower wick).
27
+ - **Logic**:
28
+ ```text
29
+ H > C & O & L
30
+ C > O & L
31
+ O = L
32
+ ```
33
+
34
+ ### Bull_4
35
+ - **Definition**: (Close = High) > (Open = Low). A perfectly strong "Marubozu" bullish candle that opened at its low and closed perfectly at its high, without wicks.
36
+ - **Logic**:
37
+ ```text
38
+ (C = H) > O & L
39
+ C > O & L
40
+ O = L
41
+ ```
42
+
43
+ ---
44
+
45
+ ## Bearish Patterns (C < O)
46
+
47
+ ### Bear_1
48
+ - **Definition**: High > Open > Close > Low. A standard bearish candle where the price varied heavily but ended below where it opened.
49
+ - **Logic**:
50
+ ```text
51
+ L < C & O & H
52
+ C < O & H
53
+ O < H
54
+ ```
55
+
56
+ ### Bear_2
57
+ - **Definition**: High > Open > Close = Low. A bearish candle that closes exactly at its lowest point, showing selling pressure all the way through the end of the session (no lower wick).
58
+ - **Logic**:
59
+ ```text
60
+ (C = L) < O & H
61
+ C < O & H
62
+ O < H
63
+ ```
64
+
65
+ ### Bear_3
66
+ - **Definition**: High = Open > Close > Low. A bearish candle that opens precisely at its high, suggesting selling pressure began instantly, producing no upper wick.
67
+ - **Logic**:
68
+ ```text
69
+ L < C & O & H
70
+ C < O & H
71
+ O = H
72
+ ```
73
+
74
+ ### Bear_4
75
+ - **Definition**: (Open = High) > (Close = Low). A perfectly strong bearish "Marubozu" candle opening at its absolute high and closing at its absolute low, showing maximal bearish momentum and no wicks.
76
+ - **Logic**:
77
+ ```text
78
+ (C = L) < O & H
79
+ C < O & H
80
+ O = H
81
+ ```
2C_patterns.md ADDED
The diff for this file is too large to render. See raw diff
 
XAUUSDc_M3_data.csv ADDED
The diff for this file is too large to render. See raw diff
 
generate_graphs.py ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import matplotlib.pyplot as plt
3
+ import matplotlib.patches as patches
4
+ import math
5
+
6
+ os.makedirs('images', exist_ok=True)
7
+
8
+ candle_types = ['Bull_1', 'Bull_2', 'Bull_3', 'Bull_4', 'Bear_1', 'Bear_2', 'Bear_3', 'Bear_4']
9
+
10
+ alignments = ['GAP_UP', 'GAP_DOWN', 'ENGULFING', 'HARAMI', 'EQUAL_HIGH', 'EQUAL_LOW', 'MEETING_LINES', 'OVERLAP_UPPER', 'OVERLAP_LOWER', 'PIERCING_CLOUD', 'CONTINUATION']
11
+
12
+ def get_base_candle(c_type, base_y=50.0, body_size=10.0, wick_size=5.0):
13
+ half_body = body_size / 2.0
14
+ top_body = base_y + half_body
15
+ bot_body = base_y - half_body
16
+
17
+ if c_type == 'Bull_1': # H > C > O > L
18
+ return (bot_body, top_body + wick_size, bot_body - wick_size, top_body)
19
+ elif c_type == 'Bull_2': # C=H > O > L
20
+ return (bot_body, top_body, bot_body - wick_size, top_body)
21
+ elif c_type == 'Bull_3': # H > C > O=L
22
+ return (bot_body, top_body + wick_size, bot_body, top_body)
23
+ elif c_type == 'Bull_4': # C=H > O=L
24
+ return (bot_body, top_body, bot_body, top_body)
25
+ elif c_type == 'Bear_1': # H > O > C > L
26
+ return (top_body, top_body + wick_size, bot_body - wick_size, bot_body)
27
+ elif c_type == 'Bear_2': # H > O > C=L
28
+ return (top_body, top_body + wick_size, bot_body, bot_body)
29
+ elif c_type == 'Bear_3': # H=O > C > L
30
+ return (top_body, top_body, bot_body - wick_size, bot_body)
31
+ elif c_type == 'Bear_4': # H=O > C=L
32
+ return (top_body, top_body, bot_body, bot_body)
33
+
34
+ def get_c2(type1, align, type2):
35
+ c1_body_size = 10.0
36
+ c1_wick_size = 5.0
37
+ O1, H1, L1, C1 = get_base_candle(type1, 50.0, c1_body_size, c1_wick_size)
38
+ top1 = max(O1, C1)
39
+ bot1 = min(O1, C1)
40
+ mid1 = (O1 + C1) / 2.0
41
+
42
+ c2_body_size = 10.0
43
+ c2_wick_size = 5.0
44
+ base_y = 50.0
45
+
46
+ if align == 'GAP_UP':
47
+ base_y = H1 + c2_body_size/2.0 + c2_wick_size + 2.0
48
+ elif align == 'GAP_DOWN':
49
+ base_y = L1 - c2_body_size/2.0 - c2_wick_size - 2.0
50
+ elif align == 'ENGULFING':
51
+ c2_body_size = c1_body_size * 1.5
52
+ c2_wick_size = c1_wick_size * 1.5
53
+ base_y = mid1
54
+ elif align == 'HARAMI':
55
+ c2_body_size = c1_body_size * 0.5
56
+ c2_wick_size = c1_wick_size * 0.5
57
+ base_y = mid1
58
+ elif align == 'EQUAL_HIGH':
59
+ _, H2_test, _, _ = get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)
60
+ base_y = 50.0 + (H1 - H2_test)
61
+ elif align == 'EQUAL_LOW':
62
+ _, _, L2_test, _ = get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)
63
+ base_y = 50.0 + (L1 - L2_test)
64
+ elif align == 'MEETING_LINES':
65
+ _, _, _, C2_test = get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)
66
+ base_y = 50.0 + (C1 - C2_test)
67
+ elif align == 'OVERLAP_UPPER':
68
+ base_y = top1
69
+ elif align == 'OVERLAP_LOWER':
70
+ base_y = bot1
71
+ elif align == 'PIERCING_CLOUD':
72
+ c2_body_size = 18.0
73
+ base_y = mid1 + 4.0
74
+ elif align == 'CONTINUATION':
75
+ O2_test, _, _, _ = get_base_candle(type2, 50.0, c2_body_size, c2_wick_size)
76
+ base_y = 50.0 + (C1 - O2_test)
77
+
78
+ return get_base_candle(type2, base_y, c2_body_size, c2_wick_size)
79
+
80
+ def is_bullish(O, C): return C > O
81
+ def is_bearish(O, C): return C < O
82
+
83
+ def determine_standard_name(c1_type, O1, H1, L1, C1, c2_type, O2, H2, L2, C2):
84
+ is_bull1 = is_bullish(O1, C1)
85
+ is_bear1 = is_bearish(O1, C1)
86
+ is_bull2 = is_bullish(O2, C2)
87
+ is_bear2 = is_bearish(O2, C2)
88
+
89
+ mid1 = (O1 + C1) / 2.0
90
+ names = []
91
+
92
+ if is_bear1 and is_bull2 and (O2 <= C1 and C2 >= O1) and (O2 < C1 or C2 > O1):
93
+ names.append("Bullish Engulfing")
94
+ elif is_bull1 and is_bear2 and (O2 >= C1 and C2 <= O1) and (O2 > C1 or C2 < O1):
95
+ names.append("Bearish Engulfing")
96
+
97
+ if is_bear1 and is_bull2 and (O2 >= C1 and C2 <= O1) and (O2 > C1 or C2 < O1):
98
+ names.append("Bullish Harami")
99
+ elif is_bull1 and is_bear2 and (O2 <= C1 and C2 >= O1) and (O2 < C1 or C2 > O1):
100
+ names.append("Bearish Harami")
101
+
102
+ if is_bear1 and is_bull2 and O2 < L1 and C2 > mid1 and C2 < O1:
103
+ names.append("Piercing Line")
104
+
105
+ if is_bull1 and is_bear2 and O2 > H1 and C2 < mid1 and C2 > O1:
106
+ names.append("Dark Cloud Cover")
107
+
108
+ if is_bear1 and is_bull2 and O2 > O1 and L2 > H1 and c1_type == 'Bear_4' and c2_type == 'Bull_4':
109
+ names.append("Bullish Kicking")
110
+ if is_bull1 and is_bear2 and O2 < O1 and H2 < L1 and c1_type == 'Bull_4' and c2_type == 'Bear_4':
111
+ names.append("Bearish Kicking")
112
+
113
+ if is_bear1 and is_bull2 and abs(L1 - L2) < 0.05:
114
+ names.append("Tweezer Bottom")
115
+ if is_bull1 and is_bear2 and abs(H1 - H2) < 0.05:
116
+ names.append("Tweezer Top")
117
+
118
+ if is_bear1 and is_bull2 and abs(C1 - C2) < 0.05 and O2 < C1:
119
+ names.append("Bullish Meeting Lines")
120
+ if is_bull1 and is_bear2 and abs(C1 - C2) < 0.05 and O2 > C1:
121
+ names.append("Bearish Meeting Lines")
122
+
123
+ if is_bear1 and is_bull2 and O2 < L1 and C2 < mid1 and C2 > C1:
124
+ names.append("Thrusting")
125
+
126
+ if is_bear1 and is_bull2 and O2 < L1 and abs(C2 - C1) < 0.05:
127
+ names.append("In Neck")
128
+
129
+ if is_bear1 and is_bull2 and O2 < L1 and abs(C2 - L1) < 0.05:
130
+ names.append("On Neck")
131
+
132
+ return ", ".join(names) if names else "-"
133
+
134
+ def draw_candle(ax, x, O, H, L, C):
135
+ color = 'green' if C > O else 'red'
136
+ ax.plot([x, x], [L, H], color=color, linewidth=2)
137
+ top = max(O, C)
138
+ bottom = min(O, C)
139
+ height = top - bottom
140
+ rect = patches.Rectangle((x - 0.3, bottom), 0.6, height, linewidth=1, edgecolor=color, facecolor=color)
141
+ ax.add_patch(rect)
142
+
143
+ def get_pattern_desc(align):
144
+ descriptions = {
145
+ 'GAP_UP': 'C2 completely above C1',
146
+ 'GAP_DOWN': 'C2 completely below C1',
147
+ 'ENGULFING': 'C2 body engulfs C1 body',
148
+ 'HARAMI': 'C2 body inside C1 body',
149
+ 'EQUAL_HIGH': 'Higher shadow matches exactly',
150
+ 'EQUAL_LOW': 'Lower shadow matches exactly',
151
+ 'MEETING_LINES': 'Close of C2 matches Close of C1',
152
+ 'OVERLAP_UPPER': 'C2 centered on C1 High/Open',
153
+ 'OVERLAP_LOWER': 'C2 centered on C1 Low/Close',
154
+ 'PIERCING_CLOUD': 'Large gap and heavy overlap',
155
+ 'CONTINUATION': 'Open of C2 matches Close of C1'
156
+ }
157
+ return descriptions.get(align, align)
158
+
159
+ def get_candle_logic(c_type, suffix):
160
+ if c_type == 'Bull_1':
161
+ return f"H{suffix} > C{suffix} & O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} > L{suffix}"
162
+ elif c_type == 'Bull_2':
163
+ return f"(C{suffix} = H{suffix}) > O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} > L{suffix}"
164
+ elif c_type == 'Bull_3':
165
+ return f"H{suffix} > C{suffix} & O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} = L{suffix}"
166
+ elif c_type == 'Bull_4':
167
+ return f"(C{suffix} = H{suffix}) > O{suffix} & L{suffix} <br> C{suffix} > O{suffix} & L{suffix} <br> O{suffix} = L{suffix}"
168
+ elif c_type == 'Bear_1':
169
+ return f"L{suffix} < C{suffix} & O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} < H{suffix}"
170
+ elif c_type == 'Bear_2':
171
+ return f"(C{suffix} = L{suffix}) < O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} < H{suffix}"
172
+ elif c_type == 'Bear_3':
173
+ return f"L{suffix} < C{suffix} & O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} = H{suffix}"
174
+ elif c_type == 'Bear_4':
175
+ return f"(C{suffix} = L{suffix}) < O{suffix} & H{suffix} <br> C{suffix} < O{suffix} & H{suffix} <br> O{suffix} = H{suffix}"
176
+ return ""
177
+
178
+ def get_alignment_logic(align):
179
+ if align == 'GAP_UP': return "L_C0 > H_C-1"
180
+ if align == 'GAP_DOWN': return "H_C0 < L_C-1"
181
+ if align == 'ENGULFING': return "(max(O_C0, C_C0) > max(O_C-1, C_C-1)) & (min(O_C0, C_C0) < min(O_C-1, C_C-1))"
182
+ if align == 'HARAMI': return "(max(O_C0, C_C0) < max(O_C-1, C_C-1)) & (min(O_C0, C_C0) > min(O_C-1, C_C-1))"
183
+ if align == 'EQUAL_HIGH': return "H_C0 = H_C-1"
184
+ if align == 'EQUAL_LOW': return "L_C0 = L_C-1"
185
+ if align == 'MEETING_LINES': return "C_C0 = C_C-1"
186
+ if align == 'OVERLAP_UPPER': return "((O_C0 + C_C0) / 2) = max(O_C-1, C_C-1)"
187
+ if align == 'OVERLAP_LOWER': return "((O_C0 + C_C0) / 2) = min(O_C-1, C_C-1)"
188
+ if align == 'PIERCING_CLOUD': return "(O_C0 > H_C-1) & (C_C0 < ((O_C-1 + C_C-1)/2))"
189
+ if align == 'CONTINUATION': return "O_C0 = C_C-1"
190
+ return ""
191
+
192
+ def get_logic_string(c1_type, align, c2_type):
193
+ lines1 = get_candle_logic(c1_type, "_C-1")
194
+ lines2 = get_candle_logic(c2_type, "_C0")
195
+ align_rule = get_alignment_logic(align)
196
+ return f"{{ <br> {lines1} <br> {lines2} <br> {align_rule} <br> }}"
197
+
198
+ patterns = []
199
+
200
+ # Generate all patterns
201
+ for t1 in candle_types:
202
+ for align in alignments:
203
+ for t2 in candle_types:
204
+ patterns.append((t1, align, t2))
205
+
206
+ total_patterns = len(patterns)
207
+ patterns_per_img = 10
208
+
209
+ markdown_lines = []
210
+ markdown_lines.append("# Complete 2-Candle Patterns")
211
+ markdown_lines.append("")
212
+ markdown_lines.append("| Code_Name | Pattern_Description | Pattern_Logic | Standard_Name | Image Reference |")
213
+ markdown_lines.append("|---|---|---|---|---|")
214
+
215
+ for i in range(0, total_patterns, patterns_per_img):
216
+ batch = patterns[i:i+patterns_per_img]
217
+
218
+ fig, axes = plt.subplots(2, 5, figsize=(20, 8))
219
+ fig.subplots_adjust(hspace=0.4, wspace=0.3)
220
+ axes = axes.flatten()
221
+
222
+ for ax in axes:
223
+ ax.set_visible(False)
224
+
225
+ for j, (t1, align, t2) in enumerate(batch):
226
+ ax = axes[j]
227
+ ax.set_visible(True)
228
+
229
+ O1, H1, L1, C1 = get_base_candle(t1, 50.0, 10.0, 5.0)
230
+ O2, H2, L2, C2 = get_c2(t1, align, t2)
231
+
232
+ draw_candle(ax, 1, O1, H1, L1, C1)
233
+ draw_candle(ax, 2, O2, H2, L2, C2)
234
+
235
+ min_y = min(L1, L2) - 5
236
+ max_y = max(H1, H2) + 5
237
+ ax.set_ylim(min_y, max_y)
238
+ ax.set_xlim(0, 3)
239
+ ax.set_xticks([])
240
+ ax.set_yticks([])
241
+
242
+ code_name = f"{t1}_{align}_{t2}"
243
+ std_name = determine_standard_name(t1, O1, H1, L1, C1, t2, O2, H2, L2, C2)
244
+ desc = get_pattern_desc(align)
245
+
246
+ ax.set_title(f"{code_name}\n({std_name})", fontsize=9)
247
+
248
+ img_name = f"plot_{i//patterns_per_img + 1}.png"
249
+ logic_str = get_logic_string(t1, align, t2)
250
+ markdown_lines.append(f"| {code_name} | {desc} | {logic_str} | {std_name} | {img_name} |")
251
+
252
+ img_path = os.path.join('images', img_name)
253
+ plt.savefig(img_path, bbox_inches='tight')
254
+ plt.close(fig)
255
+
256
+ with open('2C_patterns.md', 'w') as f:
257
+ f.write("\n".join(markdown_lines))
258
+
259
+ print(f"Generated {total_patterns} patterns and saved to images folder. MD written to 2C_patterns.md")
images/plot_1.png ADDED

Git LFS Details

  • SHA256: 9ce9e38acbb26757405bb799b62bdc55606959b62708467454cfab4fcfaf69f0
  • Pointer size: 130 Bytes
  • Size of remote file: 15.5 kB
images/plot_10.png ADDED

Git LFS Details

  • SHA256: 9b2b12c6df82d1c795334e2ff5f532c1fe001691914da9bb4ca6fcf6c6fdb99f
  • Pointer size: 130 Bytes
  • Size of remote file: 15.8 kB
images/plot_11.png ADDED

Git LFS Details

  • SHA256: f580663049137deb79f2314785f10df1b0785cbfe3f227d84320c38447106dfb
  • Pointer size: 130 Bytes
  • Size of remote file: 17.5 kB
images/plot_12.png ADDED

Git LFS Details

  • SHA256: 4e3a28c4552a0904505af3cabbeadec2852dc739fdf90274ade9e91ac9aba796
  • Pointer size: 130 Bytes
  • Size of remote file: 18.8 kB
images/plot_13.png ADDED

Git LFS Details

  • SHA256: 212666e70f601fbced4dedb7e15d843c62519280bf87f766304a9d7c7946f883
  • Pointer size: 130 Bytes
  • Size of remote file: 18 kB
images/plot_14.png ADDED

Git LFS Details

  • SHA256: c0135dff61d95dc9a36818f17af551b6cd646192c03e734a824fbe5f284a09f9
  • Pointer size: 130 Bytes
  • Size of remote file: 17.4 kB
images/plot_15.png ADDED

Git LFS Details

  • SHA256: b7d27dddaa9b4a35de9ce686121acb1df863ad6c2ac7c93b0bf51a300d57f891
  • Pointer size: 130 Bytes
  • Size of remote file: 18.5 kB
images/plot_16.png ADDED

Git LFS Details

  • SHA256: 99fc9cddcfdb182c4e8d0114c30bdd57718859dc2a755d1b1d5cb39c95f3651f
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_17.png ADDED

Git LFS Details

  • SHA256: 3730c48c4a00e5dd5a8316205751e7ffd91bf506ef4c6ba6aea60d3a98f94972
  • Pointer size: 130 Bytes
  • Size of remote file: 20.4 kB
images/plot_18.png ADDED

Git LFS Details

  • SHA256: d81195e8b60dc3182fabeed8eab2b3c2ee64a289a9bcd4fde50478dd8745aecd
  • Pointer size: 130 Bytes
  • Size of remote file: 18.8 kB
images/plot_19.png ADDED

Git LFS Details

  • SHA256: 7c599743858971d201f67add7c1550269876aa4f4ddc6359e5251709ca1c68bb
  • Pointer size: 130 Bytes
  • Size of remote file: 16.2 kB
images/plot_2.png ADDED

Git LFS Details

  • SHA256: 25eb082e5af5d6fcda964ea280372949b14afa0683713ba436bedc8b84b8831a
  • Pointer size: 130 Bytes
  • Size of remote file: 16.5 kB
images/plot_20.png ADDED

Git LFS Details

  • SHA256: adefbcddd55c92e12f15500ded1aa0c28773730248af51367f4d69ab72a5c701
  • Pointer size: 130 Bytes
  • Size of remote file: 18.1 kB
images/plot_21.png ADDED

Git LFS Details

  • SHA256: 656438af48092f01248c0cffa1fbe9600f812172bd96232db506aeb200258a36
  • Pointer size: 130 Bytes
  • Size of remote file: 17.5 kB
images/plot_22.png ADDED

Git LFS Details

  • SHA256: dea5e17ea5426e1d2cad9bdfa52a16b4452ba2d5efd255f7a28eb617329a03be
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_23.png ADDED

Git LFS Details

  • SHA256: b955cb7c4bb2f7071723a81e56f2a421e7dbab8a58c200185ee0715cb361b92c
  • Pointer size: 130 Bytes
  • Size of remote file: 19.4 kB
images/plot_24.png ADDED

Git LFS Details

  • SHA256: 873430a75cc8d5e95563680e2a567ea30a268161fcc5db21217e6cf6a7d26bb3
  • Pointer size: 130 Bytes
  • Size of remote file: 19.7 kB
images/plot_25.png ADDED

Git LFS Details

  • SHA256: f8150d2743d60f95b51ecee274784f2a134f58a43029500e8608d3efe39c000b
  • Pointer size: 130 Bytes
  • Size of remote file: 17.9 kB
images/plot_26.png ADDED

Git LFS Details

  • SHA256: e36e9229db7e5c1b4c51d34ad3c793c7e1a5551d71cac65a1b0234b9213f0293
  • Pointer size: 130 Bytes
  • Size of remote file: 20.5 kB
images/plot_27.png ADDED

Git LFS Details

  • SHA256: 6e4d8fb60ac41167df4cddcfe88b234d406eb11f15cc948f61a3f70acabd6850
  • Pointer size: 130 Bytes
  • Size of remote file: 16.9 kB
images/plot_28.png ADDED

Git LFS Details

  • SHA256: 7e73007dc9418eb174a72c448d14e7faae170d7254650d11f08d970e01a48d44
  • Pointer size: 130 Bytes
  • Size of remote file: 17.3 kB
images/plot_29.png ADDED

Git LFS Details

  • SHA256: 51fc76c0f75aab871ee0f7b85f6ced4b5f4f85cce0ac2b03bb4d78cb250f8ac8
  • Pointer size: 130 Bytes
  • Size of remote file: 18.7 kB
images/plot_3.png ADDED

Git LFS Details

  • SHA256: 5f142421028bbca4e86a2cb59a289e62a04591689c19b813a1af61d155791ac3
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_30.png ADDED

Git LFS Details

  • SHA256: 5387f128df4e40b6cbb69d15606c22ef61ed0efb29d64803350977848592b5cf
  • Pointer size: 130 Bytes
  • Size of remote file: 18.7 kB
images/plot_31.png ADDED

Git LFS Details

  • SHA256: d93bb9d7e114b33aaffefe3f5490278be8a43e03b367392c26c24533ec84cef2
  • Pointer size: 130 Bytes
  • Size of remote file: 17.5 kB
images/plot_32.png ADDED

Git LFS Details

  • SHA256: 5290e98afc2f2172e6b2f6b87b67f7823b352e6338ed6e8f5b440eee123ca40a
  • Pointer size: 130 Bytes
  • Size of remote file: 19.1 kB
images/plot_33.png ADDED

Git LFS Details

  • SHA256: 191427186facc16f43ba136b3487b4f2d056d0e81e1bd4c737caff4a4284e2b1
  • Pointer size: 130 Bytes
  • Size of remote file: 16.5 kB
images/plot_34.png ADDED

Git LFS Details

  • SHA256: 358e72a2c248966ddfa4f11a61a9dc2f7c595baf1582752b851153b236e1364c
  • Pointer size: 130 Bytes
  • Size of remote file: 18.9 kB
images/plot_35.png ADDED

Git LFS Details

  • SHA256: 32f6c30c68d4a93279377c3b2fbb979e4c6a4db4e98f722bd1f1063263f18e8e
  • Pointer size: 130 Bytes
  • Size of remote file: 18.9 kB
images/plot_36.png ADDED

Git LFS Details

  • SHA256: c159c5379742b21cfa6c0faa2e73bf45aaf1830e5b8c0d3c86610fdb2db44c5b
  • Pointer size: 130 Bytes
  • Size of remote file: 17.6 kB
images/plot_37.png ADDED

Git LFS Details

  • SHA256: 59e86c4e5aac0b5efa2eae15e53d7de946c491c89e5c385d97616e3aae9c7307
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_38.png ADDED

Git LFS Details

  • SHA256: d65eda4f5123453924112a18801e478036b071714980064899a4d9f71f214e0a
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_39.png ADDED

Git LFS Details

  • SHA256: cde54fe89c91e5ee2b27af8d4e79dbf3cbd453d59d28b407d3527dea32beeb6c
  • Pointer size: 130 Bytes
  • Size of remote file: 16.9 kB
images/plot_4.png ADDED

Git LFS Details

  • SHA256: a51873b26e17414dd95ac61d0aeed6300be2ccc60351bc30c553367c47ae31ab
  • Pointer size: 130 Bytes
  • Size of remote file: 17.8 kB
images/plot_40.png ADDED

Git LFS Details

  • SHA256: 5bf6e757a5d01851a1495f557bff47c8ea30d2b03b6513f0cd2cf9f221011182
  • Pointer size: 130 Bytes
  • Size of remote file: 18.8 kB
images/plot_41.png ADDED

Git LFS Details

  • SHA256: a088ca6d851feb24adacc4727c2a23a5dee8e46ee1e25ad78928469f2a27e24e
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_42.png ADDED

Git LFS Details

  • SHA256: ee56ef9639385fc2915fed8278fd0e425fd9412e4fafc31a71e9e3937c251afc
  • Pointer size: 130 Bytes
  • Size of remote file: 18.6 kB
images/plot_43.png ADDED

Git LFS Details

  • SHA256: d35240e2cea4fc928b51dacd4398787c9f60450c004a72ef4f8ad2ccda2dcf1d
  • Pointer size: 130 Bytes
  • Size of remote file: 22.6 kB
images/plot_44.png ADDED

Git LFS Details

  • SHA256: a68e8122c956a53b9c5ce4dd60298c45a89359eb236347f11d171fc601432af1
  • Pointer size: 130 Bytes
  • Size of remote file: 18.2 kB
images/plot_45.png ADDED

Git LFS Details

  • SHA256: b959a766ee8244241e85b31182af6bd4490b5ea2aea170321376cca03610c86e
  • Pointer size: 130 Bytes
  • Size of remote file: 16 kB
images/plot_46.png ADDED

Git LFS Details

  • SHA256: 3ccd078be3d60605c09a6f86804ee8810537dbcf4c2f857a40b01c402e4e57a6
  • Pointer size: 130 Bytes
  • Size of remote file: 18.6 kB
images/plot_47.png ADDED

Git LFS Details

  • SHA256: 210bf458dc8cece73375eed6aff5cc5459e7542d5a78ee416d8a03a2ad2f6f9b
  • Pointer size: 130 Bytes
  • Size of remote file: 20.1 kB
images/plot_48.png ADDED

Git LFS Details

  • SHA256: f491d7c9e1ee64e8515f0a7e41c6444bece1da176de9361231aff57b44e978d6
  • Pointer size: 130 Bytes
  • Size of remote file: 17.4 kB
images/plot_49.png ADDED

Git LFS Details

  • SHA256: cfe2546a5ccb6ff399c0671a8ab9022f1ddad52371374fa05715220a4e47996e
  • Pointer size: 130 Bytes
  • Size of remote file: 21.1 kB
images/plot_5.png ADDED

Git LFS Details

  • SHA256: 3acdd6558c26978b2e8fc0238cdbd1f0f0d60863be4bed8efef78967ec95064c
  • Pointer size: 130 Bytes
  • Size of remote file: 16.8 kB
images/plot_50.png ADDED

Git LFS Details

  • SHA256: 08e280882daf34e08678e95807a45cf26658c37af53ace2f890af280bd0a5c87
  • Pointer size: 130 Bytes
  • Size of remote file: 20.1 kB