seolpyo-mplchart 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of seolpyo-mplchart might be problematic. Click here for more details.
- seolpyo_mplchart/draw.py +6 -0
- {seolpyo_mplchart-1.0.0.dist-info → seolpyo_mplchart-1.0.1.dist-info}/METADATA +2 -2
- {seolpyo_mplchart-1.0.0.dist-info → seolpyo_mplchart-1.0.1.dist-info}/RECORD +5 -5
- {seolpyo_mplchart-1.0.0.dist-info → seolpyo_mplchart-1.0.1.dist-info}/WHEEL +0 -0
- {seolpyo_mplchart-1.0.0.dist-info → seolpyo_mplchart-1.0.1.dist-info}/top_level.txt +0 -0
seolpyo_mplchart/draw.py
CHANGED
|
@@ -276,6 +276,8 @@ class SegmentMixin(DataMixin):
|
|
|
276
276
|
return
|
|
277
277
|
|
|
278
278
|
def _set_candle_segments(self, index_start, index_end):
|
|
279
|
+
index_end += 1
|
|
280
|
+
|
|
279
281
|
self.collection_candle.set_segments(self.segment_candle[index_start:index_end])
|
|
280
282
|
self.collection_candle.set_facecolor(self.facecolor_candle[index_start:index_end])
|
|
281
283
|
self.collection_candle.set_edgecolor(self.edgecolor_candle[index_start:index_end])
|
|
@@ -291,6 +293,8 @@ class SegmentMixin(DataMixin):
|
|
|
291
293
|
return
|
|
292
294
|
|
|
293
295
|
def _set_wick_segments(self, index_start, index_end, simpler=False):
|
|
296
|
+
index_end += 1
|
|
297
|
+
|
|
294
298
|
self.collection_candle.set_segments(self.segment_candle_wick[index_start:index_end])
|
|
295
299
|
self.collection_candle.set_facecolor([])
|
|
296
300
|
self.collection_candle.set_edgecolor(self.edgecolor_candle[index_start:index_end])
|
|
@@ -311,6 +315,8 @@ class SegmentMixin(DataMixin):
|
|
|
311
315
|
return
|
|
312
316
|
|
|
313
317
|
def _set_line_segments(self, index_start, index_end, simpler=False, set_ma=True):
|
|
318
|
+
index_end += 1
|
|
319
|
+
|
|
314
320
|
self.collection_candle.set_segments(self.segment_priceline[:, index_start:index_end])
|
|
315
321
|
self.collection_candle.set_facecolor([])
|
|
316
322
|
self.collection_candle.set_edgecolor(self.color_priceline)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: seolpyo-mplchart
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Fast candlestick chart using Python. Includes navigator, slider, navigation, and text information display functions
|
|
5
5
|
Author-email: white-seolpyo <white-seolpyo@naver.com>
|
|
6
6
|
License: MIT License
|
|
@@ -42,7 +42,7 @@ Ethereum: 0x1c5fb8a5e0b1153cd4116c91736bd16fabf83520
|
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
|
45
|
-

|
|
46
46
|
|
|
47
47
|

|
|
48
48
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
seolpyo_mplchart/__init__.py,sha256=4UKWKBXMeax9YwejtLgbCHjjFQ0HEEhNBdQx9v4Ez0w,14476
|
|
2
2
|
seolpyo_mplchart/base.py,sha256=ofMDjWMLjPV-G_uJDiiUSR4X5eMPbrZDUg70R2YiPHE,3778
|
|
3
3
|
seolpyo_mplchart/cursor.py,sha256=Wm1SDBunQleZgphArJR2bVNPZ3vDAcxNlC5HaQwKMRk,17908
|
|
4
|
-
seolpyo_mplchart/draw.py,sha256=
|
|
4
|
+
seolpyo_mplchart/draw.py,sha256=3bRIg6sz9XwzKNnYWbaO0W8KlC-Wnpl0dJnY6lgHZ8c,18860
|
|
5
5
|
seolpyo_mplchart/slider.py,sha256=0sVzwxiZHZv-f2UhRJUTSz2aJ32BsVyPvrcOpw2hn-U,20635
|
|
6
6
|
seolpyo_mplchart/test.py,sha256=TFnIXphJsl-B7iIhBh7-PZKUz2Gjh7mwNwrk8aUS4SA,180
|
|
7
7
|
seolpyo_mplchart/utils.py,sha256=a3XycRBTndrsjBw_1VKTxbSvOGpVYXHRK87v7azgRe8,1433
|
|
8
8
|
seolpyo_mplchart/data/apple.txt,sha256=0izAfweu1lLsC0IwVthdVlo9reG8KGbKGTSX5knI5Zc,1380864
|
|
9
9
|
seolpyo_mplchart/data/samsung.txt,sha256=UejaSkbzr4E5K3lkelCT0yJiWUPfmViBEaTyoXyphIs,2476424
|
|
10
|
-
seolpyo_mplchart-1.0.
|
|
11
|
-
seolpyo_mplchart-1.0.
|
|
12
|
-
seolpyo_mplchart-1.0.
|
|
13
|
-
seolpyo_mplchart-1.0.
|
|
10
|
+
seolpyo_mplchart-1.0.1.dist-info/METADATA,sha256=2ocUZovo4l5B1gtaKSt-9lVUOupVaR6VFttxjIMXEiE,2352
|
|
11
|
+
seolpyo_mplchart-1.0.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
12
|
+
seolpyo_mplchart-1.0.1.dist-info/top_level.txt,sha256=KgqFn7rKWize7OjMaTCHxKm9ie6vqnyb5c8fN7y_tSo,17
|
|
13
|
+
seolpyo_mplchart-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|