ABOVE_Series

This commit is contained in:
Miha Kralj
2023-04-03 09:45:19 -07:00
parent d02fa3a5ec
commit 69fae888d5
6 changed files with 36 additions and 15 deletions
+2 -3
View File
@@ -10,7 +10,7 @@ Alphavantage - Free API to collect 100 recent daily quotes. It requires a (free)
APIkey: unique Alphavantage API key
</summary>
*/
public class Alphavantage_Feed : TBars
{
public enum Interval { Month, Week, Day, Hour, Min30, Min15, Min5, Min1}
@@ -52,5 +52,4 @@ public class Alphavantage_Feed : TBars
}
return (date, o, h, l, c, v);
}
}
*/
}
+1 -2
View File
@@ -11,7 +11,7 @@ Yahoo Finance - Free API feed to collect daily market quotes
Yahoo_Feed ticker = new("MSFT", 20)
</summary>
*/
public class Yahoo_Feed : TBars
{
public Yahoo_Feed(string Symbol = "IBM", int Period = 252) {
@@ -46,4 +46,3 @@ public class Yahoo_Feed : TBars
}
}
}
*/