Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update documention to describe adjuct price and resamle Data in tse
  • Loading branch information
alised committed Sep 22, 2021
commit d4324c823c1af46329a9bf39e0fb1f9906b4b77e
8 changes: 8 additions & 0 deletions docs/source/remote_data.rst
Original file line number Diff line number Diff line change
@@ -780,6 +780,14 @@ An interface to structure the information provided by
f = web.DataReader("نوری", "tse", start, end)
f.head()

# Adjust prices
f = web.get_data_tse("نوری", start, end, adjust_price=True)
f.head()

# Resamle Close price weekly or monthly
f = web.get_data_tse("نوری", start, end, interval="m")
f.head()

# Multiple series:
multi = web.DataReader(["نوری", "برکت"], "tse", start, end)
multi.head()