Skip to content

Commit

Permalink
Merge pull request #1447 from bug-or-feature/issue-1435-minor-issues-11
Browse files Browse the repository at this point in the history
Fix a couple of minor issues
  • Loading branch information
bug-or-feature authored Nov 4, 2024
2 parents e0e56a4 + 1aa9170 commit 8760837
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/futures/csvconfig/rollconfig.csv
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ MUMMY,HMUZ,-5,1,HMUZ,14
MXP,HMUZ,-5,1,HMUZ,17
NASDAQ,HMUZ,-5,1,HMUZ,14
NASDAQ_micro,HMUZ,-5,1,HMUZ,14
NASDAQ_mini,HMZ,-5,1,HMZ,18
NASDAQ_mini,HMUZ,-5,1,HMUZ,18
NICKEL_LME,FGHJKMNQUVXZ,-45,1,FGHJKMNQUVXZ,14
NIFTY,FGHJKMNQUVXZ,-10,1,FGHJKMNQUVXZ,15
NIFTY-IN,FGHJKMNQUVXZ,-10,1,FGHJKMNQUVXZ,20
Expand Down
4 changes: 2 additions & 2 deletions docs/notebooks/introduction_with_fxdata.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@
"\n",
"plt.figure(figsize=(12,5))\n",
"\n",
"ax1 = price.plot(color='blue', grid=True, label='Forecast')\n",
"ax2 = ewmac.plot(color='red', grid=True, secondary_y=True, label='Price')\n",
"ax1 = price.plot(color='blue', grid=True, label='Price')\n",
"ax2 = ewmac.plot(color='red', grid=True, secondary_y=True, label='Forecast')\n",
"\n",
"h1, l1 = ax1.get_legend_handles_labels()\n",
"h2, l2 = ax2.get_legend_handles_labels()\n",
Expand Down

0 comments on commit 8760837

Please sign in to comment.