Skip to content

Commit 792647d

Browse files
author
Daniel Goldfarb
committed
switch to production location for README images.
1 parent f7e7d85 commit 792647d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ mpf.plot(daily)
174174
```
175175

176176

177-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_4_1.png)
177+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_4_1.png)
178178

179179

180180
---
@@ -188,7 +188,7 @@ mpf.plot(daily,type='candle')
188188
```
189189

190190

191-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_6_1.png)
191+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_6_1.png)
192192

193193

194194

@@ -197,7 +197,7 @@ mpf.plot(daily,type='line')
197197
```
198198

199199

200-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_7_1.png)
200+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_7_1.png)
201201

202202

203203
---
@@ -213,7 +213,7 @@ mpf.plot(daily,type='ohlc',mav=4)
213213
```
214214

215215

216-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_9_1.png)
216+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_9_1.png)
217217

218218

219219

@@ -222,7 +222,7 @@ mpf.plot(daily,type='candle',mav=(3,6,9))
222222
```
223223

224224

225-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_10_1.png)
225+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_10_1.png)
226226

227227

228228
---
@@ -234,7 +234,7 @@ mpf.plot(daily,type='candle',mav=(3,6,9),volume=True)
234234
```
235235

236236

237-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_12_1.png)
237+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_12_1.png)
238238

239239

240240
Notice, in the above chart, there are no gaps along the x-coordinate, even though there are days on which there was no trading. ***Non-trading days are simply not shown*** (since there are no prices for those days).
@@ -250,7 +250,7 @@ mpf.plot(daily,type='candle',mav=(3,6,9),volume=True,show_nontrading=True)
250250
```
251251

252252

253-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_14_1.png)
253+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_14_1.png)
254254

255255

256256
---
@@ -367,7 +367,7 @@ mpf.plot(iday,type='candle',mav=(7,12))
367367
```
368368

369369

370-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_18_1.png)
370+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_18_1.png)
371371

372372

373373
The "time-interpretation" of the `mav` integers depends on the frequency of the data, because the mav integers are the *number of data points* used in the Moving Average (not the number of days or minutes, etc). Notice above that for intraday data the x-axis automatically displays TIME *instead of* date. Below we see that if the intraday data spans into two (or more) trading days the x-axis automatically displays *BOTH* TIME and DATE
@@ -379,7 +379,7 @@ mpf.plot(iday,type='candle')
379379
```
380380

381381

382-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_20_1.png)
382+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_20_1.png)
383383

384384

385385
---
@@ -391,7 +391,7 @@ mpf.plot(iday,type='candle',show_nontrading=True)
391391
```
392392

393393

394-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_22_1.png)
394+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_22_1.png)
395395

396396

397397
---
@@ -403,7 +403,7 @@ mpf.plot(intraday,type='ohlc',show_nontrading=True)
403403
```
404404

405405

406-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_24_1.png)
406+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_24_1.png)
407407

408408

409409
---
@@ -415,7 +415,7 @@ mpf.plot(intraday,type='line')
415415
```
416416

417417

418-
![png](https://raw.githubusercontent.com/DanielGoldfarb/mplfinance/master/readme_files/readme_26_1.png)
418+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_26_1.png)
419419

420420

421421
---

0 commit comments

Comments
 (0)