Skip to content

WPF Application, which uses YahooFinanceAPI to get real-time information about Stocks. The app has a Watchlist functionality where stocks can be added and observed. Alarm functionality, which will send Whatsapp messages (TwillioAPI) when a target price has been reached.

Valkata154/FinancerApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FinancerApp

WPF Application, which gathers real-time information on stocks from the YahooFinanceAPI. Stocks can be added to a Watchlist. Stock alarms can be created to send notifications on Whatsapp. The application is connected to a DB, which saves all the tickers and their alarms.

image

How to run

  • Create a Twillio account and add your SID and TOKEN to the AlarmWindow.xaml.cs
  • Add your phone number to to the AlarmWindow.xaml.cs
  • For more information on using Twillio: https://www.twilio.com/docs/usage/api

Watchlist

The watchlist shows the Stock Symbol, the current price, open price and the volume. Updates every 1 second (this can be modified in code).

  • If the ticker symbol is red, that means that the Current Price is lower than the Open Price. If it is green the Current Price is higher than the Open Price
  • When the market opens the Current Price changes from red to green and green to red every second based on the previous current price. This indicates if the price is going low or high.
  • Tickers are added by clicking the "+" symbol and entering the name of the ticker. (example: "ACB")
  • Deleting a ticker can be done by double-clicking on the ListView item.

image

Alarms

  • Multiple alarms can be added to various tickers.
  • A whatsapp message is sent to the number when the ticker goes above or bellow the given target price alarm.
  • The check method runs every 2 secs by retrieving the live data and sending notifications if alarm reached. (seconds can be modified in the code)
  • Alarms are added by clicking on the "+" symbol and entering the Name and Alarm Price for a ticker.
  • Alarms can be deleted by double clicking on the ListView item.
  • WhatsApp message format is: TickerName CurrentPrice is ABOVE/BELLOW TargetPrice alarm.

image image

image

About

WPF Application, which uses YahooFinanceAPI to get real-time information about Stocks. The app has a Watchlist functionality where stocks can be added and observed. Alarm functionality, which will send Whatsapp messages (TwillioAPI) when a target price has been reached.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages