How to get Price change percent from ticker
See original GitHub issueThere is problem to get Price Change Percent from ticker because the limited variable set in ExchangeSharp.ExchangeTicker class. So how we get Price Change Percent from ticker
public sealed class ExchangeTicker
{
public ExchangeTicker();
public string Id { get; set; }
public string MarketSymbol { get; set; }
public decimal Bid { get; set; }
public decimal Ask { get; set; }
public decimal Last { get; set; }
public ExchangeVolume Volume { get; set; }
public void FromBinary(BinaryReader reader);
public void ToBinary(BinaryWriter writer);
public override string ToString();
}
Issue Analytics
- State:
- Created 4 years ago
- Comments:9
Top Results From Across the Web
Calculating Investment Percentage Gains or Losses
Take the selling price and subtract the initial purchase price. · Take the gain or loss from the investment and divide it by...
Read more >What Is Percentage Change?
The formula for percentage change is: (New Price - Old Price) / Old Price x 100. The percentage change will be positive if...
Read more >How is Percent Change Calculated? [StockCharts Support]
Percent Change, meanwhile, is calculated by dividing the Chg value by the previous period's close and multiplying the result by 100.
Read more >How to calculate percentage price changes correctly with ...
... logarithm when calculating percentage price increases and decreases. ... course, Stock prices,Mercursim; percentage change ; delta, ...
Read more >How to Calculate Market Price Change of Common Stock
Divide the change in dollars by the original price and multiply by 100 to figure the percentage change. In this example, divide $2...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
What I like about the GetCandlesAsync approach, you basically can get any time frame you want. Here’s BSVUSD at one hour intervals. I have it on a timer that refreshes every minute or every hour depending on the candle.
Edit: Percent calc fix
Alternatively, use GetCandlesAsync to get any price history using candle data.