中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python 金融計算框架 Prophet怎么用

發布時間:2021-10-25 17:25:23 來源:億速云 閱讀:187 作者:柒染 欄目:編程語言

Python 金融計算框架 Prophet怎么用,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

前言

Prophet 是一個 Python 的微框架,用于金融市場。Prophet 可以讓開發人員把精力放在金融策略模型、項目組合管理和分析上。

示例代碼:

from datetime import datetimefrom prophet import Prophetfrom prophet.data import YahooCloseDatafrom prophet.analyze import default_analyzersfrom prophet.orders import Ordersclass OrderGenerator(object):
    def __init__(self):
        super(OrderGenerator, self).__init__()
        self._data = dict()    def run(self, prices, timestamp, cash, **kwargs):
        symbol = "AAPL"
        orders = Orders()        if (prices.loc[timestamp, symbol] * 100) < cash:
            orders.add_order(symbol, 100)        return orders
prophet = Prophet()
prophet.set_universe(['AAPL', 'XOM'])
prophet.register_data_generators(YahooCloseData())
prophet.set_order_generator(OrderGenerator())
backtest = prophet.run_backtest(start=datetime(2010, 1, 1))
prophet.register_portfolio_analyzers(default_analyzers)
analysis = prophet.analyze_backtest(backtest)
print(analysis)# +--------------------------------------+# | sharpe            |    1.09754359611 |# | average_return    | 0.00105478425027 |# | cumulative_return |         2.168833 |# | volatility        |  0.0152560508189 |# +--------------------------------------+# Generate orders for you to execute today# Using Nov, 10 2014 as the date because there might be no data for today's# date (Market might not be open) and we don't want examples to fail.today = datetime(2014, 11, 10)
print(prophet.generate_orders(today))# Orders[Order(symbol='AAPL', shares=100)]

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

呼玛县| 来宾市| 中宁县| 固阳县| 庐江县| 望都县| 屏边| 三亚市| 枣庄市| 赞皇县| 阳朔县| 望都县| 雷山县| 屯留县| 内江市| 吐鲁番市| 乌兰县| 二连浩特市| 双城市| 中牟县| 南城县| 通城县| 奉新县| 霍邱县| 繁峙县| 遂昌县| 利辛县| 鄂托克前旗| 塘沽区| 西盟| 云南省| 三明市| 廊坊市| 和政县| 常德市| 行唐县| 望谟县| 赣榆县| 济南市| 绥德县| 翼城县|