minor improvements

This commit is contained in:
Gert Wohlgemuth
2018-05-16 23:43:58 -07:00
parent 51e9cdb42c
commit 5d16569233
21 changed files with 146 additions and 25 deletions

View File

@@ -285,7 +285,7 @@ def plot_analyzed_dataframe(args: Namespace) -> None:
buys = go.Scattergl(
x=df_buy.date,
y=df_buy.close * 0.995,
y=df_buy.close,
mode='markers',
name='buy',
marker=dict(
@@ -299,7 +299,7 @@ def plot_analyzed_dataframe(args: Namespace) -> None:
sells = go.Scatter(
x=df_sell.date,
y=df_sell.close * 1.01,
y=df_sell.close,
mode='markers+text',
name='sell',
text=df_sell.profit,