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 gcapi import GCapiClient # From https://github.com/rickykim93/gcapi-python | |
from gcapi.gcapi_tools import format_date # From https://github.com/rickykim93/gcapi-python | |
from datetime import datetime | |
from time import sleep | |
import numpy | |
def check_sell_criteria(prices): | |
# TODO: Write your algorithm to detect sell condition here | |
return False |
NewerOlder