for dev branch

This commit is contained in:
Miha Kralj
2022-11-06 16:43:24 -08:00
parent 6465e79fc6
commit 32615af18b
14 changed files with 346 additions and 756 deletions
+3 -1
View File
@@ -13,6 +13,8 @@ Alphavantage - Free API to collect quotes for stock, Forex and crypto. It requir
</summary> */
/* TODO: refactor into three feeds: FX, Crypto, Stock */
public class Alphavantage_Feed : TBars
{
public enum Interval { Month, Week, Day, Hour, Min30, Min15, Min5, Min1}
@@ -113,7 +115,7 @@ public class Alphavantage_Feed : TBars
{
Interval.Month => "_MONTHLY",
Interval.Week => "_WEEKLY",
Interval.Day => "_DAILY",
Interval.Day => "_DAILY_ADJUSTED",
Interval.Hour => "_INTRADAY&interval=60min",
Interval.Min30 => "_INTRADAY&interval=30min",
Interval.Min15 => "_INTRADAY&interval=15min",