Analyze stock
Project description
kabutobashi
concept
class-relationship.
E
: EntityVO
: ValueObjectS
: ServiceA
: Aggregate
graph TD;
subgraph Stock
stock[Stock:E]
brand[StockBrand:E]
record[StockRecord:E]
indicator[StockIndicator:E]
stock --> brand
stock --> record
stock --> indicator
end
subgraph Stock-to-Analysis
aggregate[StockCodeSingleAggregate:A]
processed[StockDataProcessed:VO]
estimated[StockDataEstimated:VO]
aggregate --- |Info| stock
aggregate --- |Method| processed
aggregate --- |Analysis| estimated
end
subgraph Repositories/Storage
repositories[(Storage/Database)] --- | read/write | stock
end
subgraph Pages
raw_html[RawHtml:VO]
decoder[Decoder:S]
decoded_html[DecodedHtml:VO]
raw_html --> decoder
decoder --> decoded_html
decoded_html --> repositories
decoded_html --> stock
end
subgraph Repositories/Web
web[[Web]] --> | crawl | raw_html
end
usage
import kabutobashi as kb
df = kb.example()
methods = kb.methods + [kb.basic, kb.pct_change, kb.volatility]
analysis = kb.stock_analysis
agg = kb.StockCodeSingleAggregate.of(entity=df, code="1234").with_processed(methods).with_estimated(stock_analysis=analysis)
print(agg)
# n日前までの営業日の日付リストを取得する関数
target_date = "2020-01-01"
date_list = kb.get_past_n_days(target_date, n=40)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
kabutobashi-0.6.5.tar.gz
(34.9 kB
view hashes)
Built Distribution
Close
Hashes for kabutobashi-0.6.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e02c20b21f02f1e15453382625467223402f6146a7d32077576a2010ef5d1b50 |
|
MD5 | 6a1af82e83adbf5797df68bdbb4d444e |
|
BLAKE2b-256 | 91bf93039ea0ce1844228ad7c6c51494c558914d672ce8fa6b49ce88a60856b3 |