Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Sell stock with two mintues until close time

Hey, can someone put into my code, code that will sell my selected security two minutes until close time
Here is my code:
def initialize(context):
context.stock =sid(24757)

def handle_data(context, data):
data[context.stock].open_price
curr_bar = data[context.stock].price
open_price= data[context.stock].open_price

if curr_bar > open_price :  


    order(context.stock, 100, style=StopOrder(open_price))  

def myfunc(context, data):
data[context.stock].open_price
curr_bar = data[context.stock].price
open_price= data[context.stock].open_price

if curr_bar <= open_price :


    order(context.stock, -100, style=LimitOrder(open_price))  
2 responses

add this to your initialize:

schedule_function(  
    liquidate(context, data),  
    date_rules.every_day()),  
    time_rules.market_open(hours=6, minutes=58)  
  )  

then add a liquidate function

def liquidate(context, data):  
     order_target_percent(context.stock, 0)  
     #adjust these sell statements to whatever suits your needs  

word of caution, submitting an order 2min till close is risky, you may be stuck with an overnight position
I would suggest a quick search of the API docs in the future, a quick search and you would have found they layout the steps above pretty simply.

   time_rules.market_open(hours=6, minutes=58)  

Beware of early closes. If the goal is to execute something 2 minutes before the market closes, then this is better:

time_rules.market_close(minutes=2)  
Disclaimer

The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by Quantopian. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. No information contained herein should be regarded as a suggestion to engage in or refrain from any investment-related course of action as none of Quantopian nor any of its affiliates is undertaking to provide investment advice, act as an adviser to any plan or entity subject to the Employee Retirement Income Security Act of 1974, as amended, individual retirement account or individual retirement annuity, or give advice in a fiduciary capacity with respect to the materials presented herein. If you are an individual retirement or other investor, contact your financial advisor or other fiduciary unrelated to Quantopian about whether any given investment idea, strategy, product or service described herein may be appropriate for your circumstances. All investments involve risk, including loss of principal. Quantopian makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances.