GithubHelp home page GithubHelp logo

thederek / mock-investor Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 26 KB

Small sample program allowing for people to make mock investments in various real world companies.

CMake 6.96% C++ 93.04%

mock-investor's Introduction

mock-investor

Small sample program allowing for people to make mock investments in various real world companies.

Example use of the API

Source

int main()
{
    // Create our trader
    Trader trader("Bob");

    // Create our company
    Company company("Apple", "APPL", 97.34);

    // Have him buy some stock
    trader.buy(company, 10);

    // Bobs current capital
    std::cout << "Bob's Capital: " << trader.getCapital() << std::endl;

    // Bobs current net worth
    std::cout << "Bob net worth: " << trader.netWorth() << std::endl;

    // Increase the value of APPL
    company.setPrice(company.getPrice() + 10);
    std::cout << "\nApple increases by $10/share\n" << std::endl;

    // Bobs current capital
    std::cout << "Bob's Capital: " << trader.getCapital() << std::endl;

    // Bobs current net worth
    std::cout << "Bob net worth: " << trader.netWorth() << std::endl;

    return 0;
}

Output

Bobs Capital: 9026.6
Bobs net worth: 10000

Apple increases by $10/share

Bobs Capital: 9026.6
Bobs net worth: 10100

mock-investor's People

Contributors

thederek avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.