-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forex, Futures, Crypto and Stock updates #51
Open
mccabe93
wants to merge
13
commits into
MatthiWare:master
Choose a base branch
from
mccabe93:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
cff9fbf
Forex, Futures, Crypto and Stock updates
mccabe93 dad880e
update
mccabe93 eb419ff
Don't remember.
mccabe93 665662b
changes
mccabe93 1cf5e3b
new stuff
mccabe93 889351e
Upgrade to .NET 8.
mccabe93 e0fdeb8
Fixed .xml file hard path.
mccabe93 9085954
Update README.md
mccabe93 19ab3b5
Test commit with renamed repo.
mccabe93 7bd8d19
Merge branch 'master' of https://github.com/mccabe93/FinancialModelin…
mccabe93 d9bf2c5
Updated nuget information.
mccabe93 1647d4a
- Added Impact field to EconomicCalendarResponse.
mccabe93 69b0ebd
Added CommitmentOfTraders report support.
mccabe93 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
14 changes: 9 additions & 5 deletions
14
FinancialModelingPrepApi/Abstractions/Crypto/ICryptoMarketProvider.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
using MatthiWare.FinancialModelingPrep.Model; | ||
using MatthiWare.FinancialModelingPrep.Model.Crypto; | ||
using MatthiWare.FinancialModelingPrep.Model.StockMarket; | ||
using System.Collections.Generic; | ||
using System.Threading.Tasks; | ||
|
||
namespace MatthiWare.FinancialModelingPrep.Abstractions.StockMarket | ||
namespace MatthiWare.FinancialModelingPrep.Abstractions.Crypto | ||
{ | ||
public interface ICryptoMarketProvider | ||
{ | ||
public Task<ApiResponse<List<CryptoItem>>> GetAvilableCryptocurrencies(); | ||
Task<ApiResponse<List<CryptoItem>>> GetAvilableCryptocurrenciesAsync(); | ||
Task<ApiResponse<List<CryptoQuoteResponse>>> GetDailyQuotes(); | ||
|
||
public Task<ApiResponse<List<CryptoHistoricalPricePeriodListing>>> GetHistoricalPrices(string symbol, HistoricalPricingPeriod period); | ||
Task<ApiResponse<CryptoHistoricalPriceDailyItem>> GetHistoricalQuoteAsync(string symbol); | ||
|
||
public Task<ApiResponse<CryptoHistoricalPriceDailyItem>> GetDailyPrices(string symbol); | ||
Task<ApiResponse<CryptoHistoricalPriceDailyItem>> GetHistoricalQuoteAsync(string symbol, string from, string to); | ||
|
||
Task<ApiResponse<List<CryptoHistoricalPricePeriodListing>>> GetHistoricalQuoteAsync(string symbol, HistoricalPricingPeriod period); | ||
|
||
Task<ApiResponse<List<CryptoQuoteResponse>>> GetQuoteAsync(string symbol); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
FinancialModelingPrepApi/Abstractions/Forex/IForexMarketProvider.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using MatthiWare.FinancialModelingPrep.Model; | ||
using MatthiWare.FinancialModelingPrep.Model.Forex; | ||
using System.Collections.Generic; | ||
using System.Threading.Tasks; | ||
|
||
namespace MatthiWare.FinancialModelingPrep.Abstractions.Forex | ||
{ | ||
public interface IForexMarketProvider | ||
{ | ||
Task<ApiResponse<List<ForexBookResponse>>> GetBookAsync(string symbol); | ||
|
||
Task<ApiResponse<List<ForexQuoteResponse>>> GetQuoteAsync(string symbol); | ||
|
||
Task<ApiResponse<List<ForexHistoricalQuoteResponse>>> GetHistoricalQuoteAsync(string symbol, HistoricalPricingPeriod period); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
FinancialModelingPrepApi/Abstractions/Futures/IFuturesMarketProvider.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using MatthiWare.FinancialModelingPrep.Model; | ||
using MatthiWare.FinancialModelingPrep.Model.Futures; | ||
using System.Collections.Generic; | ||
using System.Threading.Tasks; | ||
|
||
namespace MatthiWare.FinancialModelingPrep.Abstractions.Futures | ||
{ | ||
public interface IFuturesMarketProvider | ||
{ | ||
Task<ApiResponse<List<FuturesQuoteResponse>>> GetQuoteAsync(string symbol); | ||
|
||
Task<ApiResponse<List<FuturesHistoricalQuoteResponse>>> GetHistoricalQuoteAsync(string symbol, HistoricalPricingPeriod period); | ||
} | ||
} |
This file contains 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
74 changes: 74 additions & 0 deletions
74
FinancialModelingPrepApi/Abstractions/Model/ICurrentQuote.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
using System; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace MatthiWare.FinancialModelingPrep.Abstractions.Model | ||
{ | ||
public interface ICurrentQuote | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need to have this interface, just create the different models with the properties that they have. |
||
{ | ||
[JsonPropertyName("symbol")] | ||
public string Symbol { get; set; } | ||
|
||
[JsonPropertyName("name")] | ||
public string Name { get; set; } | ||
|
||
[JsonPropertyName("exchange")] | ||
public string Exchange { get; set; } | ||
|
||
[JsonPropertyName("open")] | ||
public double? Open { get; set; } | ||
|
||
[JsonPropertyName("price")] | ||
public double? Price { get; set; } | ||
|
||
[JsonPropertyName("previousclose")] | ||
public double? PreviousClose { get; set; } | ||
|
||
[JsonPropertyName("daylow")] | ||
public double? DayLow { get; set; } | ||
|
||
[JsonPropertyName("dayhigh")] | ||
public double? DayHigh { get; set; } | ||
|
||
[JsonPropertyName("yearlow")] | ||
public double? YearlyLow { get; set; } | ||
|
||
[JsonPropertyName("yearhigh")] | ||
public double? YearlyHigh { get; set; } | ||
|
||
[JsonPropertyName("priceavg50")] | ||
public double? PriceAvg50 { get; set; } | ||
|
||
[JsonPropertyName("priceavg200")] | ||
public double? PriceAvg200 { get; set; } | ||
|
||
[JsonPropertyName("change")] | ||
public double? Change { get; set; } | ||
|
||
[JsonPropertyName("changespercentage")] | ||
public double? ChangesPercentage { get; set; } | ||
|
||
[JsonPropertyName("timestamp")] | ||
public long? Timestamp { get; set; } | ||
[JsonPropertyName("volume")] | ||
public double? Volume { get; set; } | ||
[JsonPropertyName("avgVolume")] | ||
public double? AvgVolume { get; set; } | ||
|
||
// Not used by Forex or Futures. | ||
|
||
[JsonPropertyName("eps")] | ||
public double? Eps { get; set; } | ||
|
||
[JsonPropertyName("pe")] | ||
public double? Pe { get; set; } | ||
|
||
[JsonPropertyName("earningsAnnouncement")] | ||
public string? EarningsAnnouncement { get; set; } | ||
|
||
[JsonPropertyName("sharesOutstanding")] | ||
public double? SharesOutstanding { get; set; } | ||
|
||
[JsonPropertyName("marketCap")] | ||
public double? MarketCap { get; set; } | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
FinancialModelingPrepApi/Abstractions/Model/IHistoricalQuote.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Text.Json.Serialization; | ||
using System.Threading.Tasks; | ||
|
||
namespace MatthiWare.FinancialModelingPrep.Abstractions.Model | ||
{ | ||
public interface IHistoricalQuote | ||
{ | ||
[JsonPropertyName("date")] | ||
public string Date { get; set; } | ||
|
||
[JsonPropertyName("open")] | ||
public double? Open { get; set; } | ||
|
||
[JsonPropertyName("high")] | ||
public double? High { get; set; } | ||
|
||
[JsonPropertyName("low")] | ||
public double? Low { get; set; } | ||
|
||
[JsonPropertyName("close")] | ||
public double Close { get; set; } | ||
|
||
[JsonPropertyName("change")] | ||
public double? Change { get; set; } | ||
[JsonPropertyName("volume")] | ||
public double Volume { get; set; } | ||
|
||
[JsonPropertyName("changePercent")] | ||
public double? ChangePercent { get; set; } | ||
} | ||
} |
This file contains 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
12 changes: 0 additions & 12 deletions
12
FinancialModelingPrepApi/Abstractions/StockTimeSeries/HistoricalChartSeries.cs
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Task<ApiResponse<List<CryptoItem>>> GetAvailableCryptocurrenciesAsync();