This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from numba import jit | |
from numba import float64 | |
from numba import int64 | |
@jit((float64[:], int64), nopython=True, nogil=True) | |
def _ewma(arr_in, window): | |
r"""Exponentialy weighted moving average specified by a decay ``window`` | |
to provide better adjustments for small windows via: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import pandas as pd | |
from datetime import datetime | |
from fastparquet import write | |
def compute_vwap(df): | |
q = df['foreignNotional'] | |
p = df['price'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
match_wip['date'] = match_wip.date.map(lambda t: datetime.strptime(t, "%Y-%m-%d %H:%M:%S")) | |
match_wip.date |