Пример #1
0
def main():
    print(
        "*** PackPub - Hands-on Machine Learning for Algorithmic Trading Bots ***"
    )
    print(
        "*** SEC001/VID005: Build the Conventional Buy and Hold Strategy ***")
    perf = run_strategy("buy_and_hold")
    perf.to_csv("buy_and_hold.csv")
def main():
    zipline_dir = os.path.dirname(zipline.__file__)
    print("*** Zipline is installed @ {} ***".format(zipline_dir))
    print(
        "*** PackPub - Hands-on Machine Learning for Algorithmic Trading Bots ***"
    )
    print(
        "*** SEC001/VID005: Build the Conventional Buy and Hold Strategy ***")
    perf = run_strategy("buy_and_hold")
    perf.to_csv("buy_and_hold.csv")
Пример #3
0
def main():
    print(
        "*** PackPub - Hands-on Machine Learning for Algorithmic Trading Bots ***"
    )
    perf = run_strategy('')
    perf.to_csv("report.csv")
def main():
    print("*** PackPub - Hands-on Machine Learning for Algorithmic Trading Bots ***")
    print("*** SEC003/VID003: Implement Statistical Auto Correlation Strategy ***")
    perf = run_strategy("auto_correlation")
    perf.to_csv("auto_correlation.csv")
def main():
    print("*** PackPub - Hands-on Machine Learning for Algorithmic Trading Bots ***")
    print("*** SEC005/VID002: Implement Scalping Strategy ***")
    perf = run_strategy("scalping")
    perf.to_csv("scalping.csv")
Пример #6
0
def main():
    print("*** PackPub - Hands-on Machine Learning for Algorithmic Trading Bots ***")
    print(" BUILD THE CONV BUY AND HOLD STRATEGY")
    perf = run_strategy("auto_correlation")
    perf.to_csv("auto_correlation.csv")
Пример #7
0
def main():
    print("*** TFM Miguel Sánchez Mendoza ***")
    print("*** Máster en Ingelitencia Artificial Avanzada ***")
    perf = run_strategy("buy_and_hold")
    perf.to_csv("buy_and_holdX.csv")