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.
Dark Binance Theme Updated Feature Request matplotlib#614
Feature Request: New style called binance-dark matplotlib#614
- Loading branch information
1 parent
1174779
commit acd6227
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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': 'green', 'down': 'red'}, | ||
'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' | ||
) |