This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bokeh.plotting import figure, show | |
import bokeh.models | |
import bokeh.palettes | |
import bokeh.transform | |
import pandas as pd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import treasury_gov_pandas | |
from bokeh.plotting import figure, show | |
from bokeh.models import NumeralTickFormatter, HoverTool | |
import bokeh.models | |
import bokeh.palettes | |
import bokeh.transform | |
# ---------------------------------------------------------------------- | |
df = treasury_gov_pandas.update_records( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import yfinance_download | |
from bokeh.plotting import figure, show | |
import bokeh.models | |
import bokeh.palettes | |
import bokeh.transform | |
df = yfinance_download.update_records('^GSPC', interval='1d') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import yfinance_download | |
spx = yfinance_download.update_records('^GSPC', interval='1wk') | |
ndq = yfinance_download.update_records('^IXIC', interval='1wk') | |
# ndq = yfinance_download.update_records('^NDX', interval='1wk') | |
# ---------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import yfinance_download | |
from bokeh.plotting import figure, show | |
from bokeh.models import NumeralTickFormatter, HoverTool | |
import bokeh.models | |
import bokeh.palettes | |
import bokeh.transform |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.ffiec.gov/npw/FinancialReport/FinancialDataDownload | |
# $result_bhcf = Import-Csv .\BHCF.csv | |
# $result_rssd = Import-Csv .\RSSD.csv | |
Write-Host 'Importing CSV...' -ForegroundColor Yellow -NoNewline | |
# $result = Import-Csv -Delimiter '^' -Path BHCF20221231.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import treasury_gov_pandas | |
from bokeh.plotting import figure, show | |
from bokeh.models import NumeralTickFormatter, HoverTool | |
import bokeh.models | |
import bokeh.palettes | |
import bokeh.transform | |
# ---------------------------------------------------------------------- | |
# df = treasury_gov_pandas.update_records( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import pandas as pd | |
import treasury_gov_pandas | |
df = treasury_gov_pandas.update_records('https://api.fiscaldata.treasury.gov/services/api/fiscal_service/v1/accounting/od/auctions_query') | |
# print(df.iloc[0].to_string()) | |
# print(df.iloc[-10].to_string()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
from bokeh.plotting import figure, show | |
from bokeh.models import NumeralTickFormatter, HoverTool | |
from bokeh.models import LinearAxis, Range1d | |
import yfinance as yf | |
import treasury_gov_pandas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
from bokeh.plotting import figure, show | |
from bokeh.models import NumeralTickFormatter, HoverTool | |
from bokeh.models import LinearAxis, Range1d | |
import yfinance as yf | |
# --------------------------------------------------------------------- | |
df = treasury_gov_pandas.update_records( |