Overview

Summary

ContactDonateImprint


Appendix E-20: TRADING VOLUME STAT (UI prompt)


TradingVolumeStatCityModuleNasdaq

Properties (4)

PropertyTypeEntityReferenceModule
(1) AverageDailyTradesLONGTradingVolumeStat
(2) ExchangeINTTradingVolumeStatExchangeExchangeModule
(3) MarketSharePercentDOUBLETradingVolumeStat
(4) YearINTTradingVolumeStat


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /tradingvolumestat/{id}findTradingVolumeStatById(id)CityModuleGETTradingVolumeStat
(2) /tradingvolumestatfindAllTradingVolumeStat()CityModuleGETTradingVolumeStat
(3) /tradingvolumestat/{id}updateTradingVolumeStatById(tradingvolumestat)CityModulePUTTradingVolumeStat
(4) /tradingvolumestat/exchange/{id}findAllTradingVolumeStatOfExchange(id)CityModuleGETExchange TradingVolumeStat
(5) /tradingvolumestatinsertTradingVolumeStat(tradingvolumestat)CityModulePOSTTradingVolumeStat
(6) /tradingvolumestat/{id}deleteTradingVolumeStatById(id)CityModuleDELETETradingVolumeStat





Example:

final TradingVolumeStat tradingvolumestat = (TradingVolumeStat) invokeModule(CITY_MODULE + "/tradingvolumestat/" + id, TradingVolumeStat.class);
if (tradingvolumestat != null) {
    final Exchange exchange1 = (Exchange) invokeModule(EXCHANGE_MODULE + "/exchange/" + tradingvolumestat.getExchange().getId(), Exchange.class);
    if (exchange1 != null) {
        final Company ownercompany2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + exchange1.getOwnerCompany().getId(), Company.class);
        if (ownercompany2 != null) {
            final Country country3 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + ownercompany2.getCountry().getId(), Country.class);
            if (country3 != null) {
            }
        }
        final City locationcity4 = (City) invokeModule(CITY_MODULE + "/city/" + exchange1.getLocationCity().getId(), City.class);
        if (locationcity4 != null) {
            final Country country5 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + locationcity4.getCountry().getId(), Country.class);
            if (country5 != null) {
            }
        }
        final Country locationcountry6 = (Country) invokeModule(EXCHANGE_MODULE + "/country/" + exchange1.getLocationCountry().getId(), Country.class);
        if (locationcountry6 != null) {
        }
    }
}
return tradingvolumestat;


Overview

Summary

ContactDonateImprint