Code covered by the BSD License  

Highlights from
FinMetrics

  • fm(varargin) This source file is subject to version 3 of the GPL license,
  • Asset This source file is subject to version 3 of the GPL license,
  • AssetUniverse This source file is subject to version 3 of the GPL license,
  • Axl This source file is subject to version 3 of the GPL license,
  • CashPosition This source file is subject to version 3 of the GPL license,
  • CashTransaction This source file is subject to version 3 of the GPL license,
  • Config This source file is subject to version 3 of the GPL license,
  • ConsoleMenu This source file is subject to version 3 of the GPL license,
  • ConsoleMenuItem This source file is subject to version 3 of the GPL license,
  • CurrencyAsset This source file is subject to version 3 of the GPL license,
  • ExchangeTradedAsset This source file is subject to version 3 of the GPL license,
  • FinMetrics This source file is subject to version 3 of the GPL license,
  • Portfolio This source file is subject to version 3 of the GPL license,
  • Position This source file is subject to version 3 of the GPL license,
  • Statistics This source file is subject to version 3 of the GPL license,
  • StockPosition This source file is subject to version 3 of the GPL license,
  • StockTransaction This source file is subject to version 3 of the GPL license,
  • TextUI This source file is subject to version 3 of the GPL license,
  • TextUILocale This source file is subject to version 3 of the GPL license,
  • TextUIQuestion This source file is subject to version 3 of the GPL license,
  • TextUIQuestionnaire This source file is subject to version 3 of the GPL license,
  • Transaction This source file is subject to version 3 of the GPL license,
  • View all files
from FinMetrics by Vitaly Kuznetsov
Open source/open architecture quantitative portfolio management environment.

Asset
classdef Asset < handle
% This source file is subject to version 3 of the GPL license, 
% that is bundled with this package in the file LICENSE, and is 
% available online at http://www.gnu.org/licenses/gpl.txt
%
% This source file can be linked to GPL-incompatible facilities, 
% produced or made available by MathWorks, Inc.
    
    properties
        % Class of the underlying asset (Equity, Fixed Income, Commodity, Cash,
        % etc)
        AssetClass = '';                
        % Category of the underlying asset (Stocks, Options, Futures, etc)
        AssetCategory = '';                
    end
    
    properties (SetAccess = protected, GetAccess = public)                    
        SupportedEvents = { };
    end
    
    methods(Abstract) 
        ret = Plot(assetObj);
    end
    
end

Contact us