1.2.0 • Published 5 years ago

fitmarket v1.2.0

Weekly downloads
1
License
MIT License
Repository
-
Last release
5 years ago

fitmarket

Fitmarket - JavaScript client for fitmarket Mali broj ljudi - donori - dijele dnevna mjerenja svoje težine. Iz dnevne težine jednog donora određujemo vrijednosti dviju dionica: - dionica X ima vrijednost koja odgovara težini donora na taj dan. - inverzna dionica ~X ima vrijednost (150 kg - X). Primjetimo da: - kako X raste, ~X pada. - X + ~X = 150 kg Svaki igrač počinje igru sa 10,000 kg raspoloživog novca. Igrač koristi taj novac za trgovanje dionicama. Ukupna vrijednost igrača je zbroj rapoloživog novca i aktualne vrijednosti svih dionica koje posjeduje. Cilj igre je maksimizirati ukupnu vrijednost dobrim predviđanjem kretanja vrijednosti dionica. Na primjer, u prvom danu igrac kupi 125 dionica \"X\" za 80 kg. U drugom danu, dionica naraste na 82 kg. Ako igrac proda sve dionice \"X\", zaradio je 2 kg * 125 = 250 kg! Igra ne dopušta donoru da trguje vlastitim dionicama. This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.2.0
  • Package version: 1.2.0
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install fitmarket --save
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your fitmarket from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('fitmarket') in javascript files from the directory you ran the last command above from.

git

If the library is hosted at a git repository, e.g. https://github.com/YOUR_USERNAME/fitmarket then install it via:

    npm install YOUR_USERNAME/fitmarket --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var Fitmarket = require('fitmarket');

var api = new Fitmarket.StatusApi()

var token = "token_example"; // {String} Autorizacijski token


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.actualStateGet(token, callback);

Documentation for API Endpoints

All URIs are relative to https://fitmarket.xfer.hr/api

ClassMethodHTTP requestDescription
Fitmarket.StatusApiactualStateGetGET /actual_stateDohvaca JSON sa trenutnim cijenama svih dionica.
Fitmarket.StatusApimystateGetGET /mystateDohvaca JSON koji prikazuje korisnikovu ukupnu vrijednost, neinvestiranu vrijednost i vrijednosti investirane u dionice.
Fitmarket.StatusApiplotTxtGetGET /plot_txtDohvaca CSV sa cijenama svih dionica u svim prijasnjim mjerenjima.
Fitmarket.StatusApitotalMoneyPlotTxtGetGET /total_money_plot_txtDohvaca CSV sa stanjem svih trejdera.
Fitmarket.TradingApisellAllPostPOST /sell_allOvaj poziv ce prodati sve dionice koje korisnik ima. Primjetite da se ovaj poziv moze implementirati koristenjem vise poziva metode \"submit\".
Fitmarket.TradingApisubmitPostPOST /submitPoziv mijenja korisnikov portfolio. U tijelu poruke posaljite JSON sa opisom transakcije.

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.