Skip to content

Commit

Permalink
Merge branch 'develop' into feature/new-treasury-command
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaslek committed Jul 13, 2023
2 parents 3260706 + dd96825 commit 13b9296
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion openbb_terminal/common/technical_analysis/overlap_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def view_ma(
export,
os.path.dirname(os.path.abspath(__file__)).replace("common", "stocks"),
f"{ma_type.lower()}{'_'.join([str(win) for win in window])}", # type: ignore
price_df,
ta.df_ta,
sheet_name,
fig,
)
Expand Down
9 changes: 9 additions & 0 deletions openbb_terminal/parent_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1527,6 +1527,15 @@ def call_load(self, other_args):
and ns_parser.vs == "usdt"
):
ns_parser.vs = "usd"
if ns_parser.source == "YahooFinance" and ns_parser.interval in [
"240",
"10080",
"43200",
]:
console.print(
f"[red]YahooFinance does not support {ns_parser.interval}min interval[/red]"
)
return
(self.current_df) = cryptocurrency_helpers.load(
symbol=ns_parser.coin.lower(),
to_symbol=ns_parser.vs,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
No congress trading data found

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
No congress trading data found

0 comments on commit 13b9296

Please sign in to comment.