Skip to content

Commit

Permalink
Dark Binance Theme Updated Feature Request matplotlib#614
Browse files Browse the repository at this point in the history
Feature Request: New style called binance-dark matplotlib#614
  • Loading branch information
DrChandrakant authored Jun 7, 2023
1 parent 1174779 commit acd6227
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/mplfinance/_styledata/binancedark.py
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'
)

0 comments on commit acd6227

Please sign in to comment.