The MPL finance is great, however I cant seem to tweak the formatting of the axes. In the image I would like to show only the date, without the 00:00 time. Also the price, I would like to add a $ currency and decimal places (variable).
import pandas as pd
import mplfinance as mpf
df = pd.read_csv(csv)
df.date = pd.to_datetime(df.date)
cols = ['date', 'open', 'high', 'low', 'close', 'volume']
df = df[cols]
df = df.sort_values(by=['date'], ascending=False)
df = df.set_index('date')
And then calling mplfinance with (inserting style):
mpf.plot(df, type='candle', volume=True style= *style*)
Generates the below charts, I have highlight the parts I would like to change if possible.