forked from matplotlib/mplfinance
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style enhancements; and new styles from Chandrakant
- Loading branch information
1 parent
111a0a5
commit 624d161
Showing
5 changed files
with
264 additions
and
19 deletions.
There are no files selected for viewing
193 changes: 180 additions & 13 deletions
193
examples/scratch_pad/issues/issue#241_loop_all_styles.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
style = dict(style_name = 'binancedark', | ||
base_mpl_style= 'dark_background', | ||
marketcolors = {'candle' : {'up': '#3dc985', 'down': '#ef4f60'}, | ||
'edge' : {'up': '#3dc985', 'down': '#ef4f60'}, | ||
'wick' : {'up': '#3dc985', 'down': '#ef4f60'}, | ||
'ohlc' : {'up': 'green', 'down': 'red'}, | ||
'volume' : {'up': '#247252', 'down': '#82333f'}, | ||
'vcedge' : {'up': '#247252', 'down': '#82333f'}, | ||
'vcdopcod' : False, | ||
'alpha' : 1.0, | ||
}, | ||
mavcolors = ['#ffc201','#ff10ff','#cd0468','#1f77b4', | ||
'#ff7f0e','#2ca02c','#40e0d0'], | ||
y_on_right = True, | ||
gridcolor = None, | ||
gridstyle = '--', | ||
facecolor = None, | ||
rc = [ ('axes.grid','True'), | ||
('axes.grid.axis' , 'y'), | ||
('axes.edgecolor' , '#474d56' ), | ||
('axes.titlecolor','red'), | ||
('figure.titlesize', 'x-large' ), | ||
('figure.titleweight','semibold'), | ||
('figure.facecolor', '#0a0a0a' ), | ||
], | ||
base_mpf_style= 'binancedark' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
style = dict(style_name = 'tradingview', | ||
base_mpl_style= 'fast', | ||
marketcolors = {'candle' : {'up': '#26a69a', 'down': '#ef5350'}, | ||
'edge' : {'up': '#26a69a', 'down': '#ef5350'}, | ||
'wick' : {'up': '#26a69a', 'down': '#ef5350'}, | ||
'ohlc' : {'up': '#26a69a', 'down': '#ef5350'}, | ||
'volume' : {'up': '#26a69a', 'down': '#ef5350'}, | ||
'vcedge' : {'up': 'white' , 'down': 'white' }, | ||
'vcdopcod' : False, | ||
'alpha' : 1.0, | ||
'volume_alpha': 0.65, | ||
}, | ||
mavcolors = ['#2962ff','#2962ff',], | ||
y_on_right = True, | ||
gridcolor = None, | ||
gridstyle = '--', | ||
facecolor = None, | ||
rc = [ ('axes.grid','True'), | ||
('axes.edgecolor' , 'grey' ), | ||
('axes.titlecolor','red'), | ||
('figure.titlesize', 'x-large' ), | ||
('figure.titleweight','semibold'), | ||
('figure.facecolor', 'white' ), | ||
], | ||
base_mpf_style = 'tradingview' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters