Tokyo Quantopian User Group (TQUG) Hands-on will be held on Sep 20 at 13:00 (JST) .
This hands-on will be held Online in Japanese. Please subscribe here:
【オンライン】Tokyo Quantopian User Group Lectures ハンズオン - connpass
Tokyo Quantopian User Group (TQUG) Hands-on will be held on Sep 20 at 13:00 (JST) .
This hands-on will be held Online in Japanese. Please subscribe here:
【オンライン】Tokyo Quantopian User Group Lectures ハンズオン - connpass
2020/09/20 Tokyo Quantopian User Group の課題です。
詳細な手順はconnpassを参照してください
from quantopian.research import prices, symbols
import pandas as pd
close = prices(
assets=symbols('SPY'),
start='2020-01-01',
end='2020-08-01',
)
close.rolling(window=10).mean()