def main(): global profit_level global loss_level global str_account global instrument args = parse_args() user_id = args.l password = args.p str_url = args.u connection = args.c session_id = args.session pin = args.pin instrument = args.i str_account = args.account profit_level = args.Profit_Level loss_level = args.Loss_Level if not profit_level and not loss_level: print("Profit and/or loss level must be specified") return with ForexConnect() as fx: fx.login(user_id, password, str_url, connection, session_id, pin, common_samples.session_status_changed) account = Common.get_account(fx, str_account) table_manager = fx.table_manager if not account: raise Exception("The account '{0}' is not valid".format(account)) else: str_account = account.account_id print("AccountID='{0}'".format(str_account)) offer = Common.get_offer(fx, instrument) if not offer: raise Exception( "The instrument '{0}' is not valid".format(instrument)) check_trades(fx, table_manager) try: fx.logout() except Exception as e: common_samples.print_exception(e)
def create_open_market_order(fx, str_account, instrument, lots, buy_sell): try: account = Common.get_account(fx) if not account: raise Exception( "The account '{0}' is not valid".format(str_account)) else: str_account = account.account_id offer = Common.get_offer(fx, instrument) if not offer: raise Exception( "The instrument '{0}' is not valid".format(instrument)) login_rules = fx.login_rules trading_settings_provider = login_rules.trading_settings_provider base_unit_size = trading_settings_provider.get_base_unit_size( instrument, account) amount = base_unit_size * lots print("\nCreating order for instrument {0}...".format( offer.instrument)) response_listener = ResponseListener( fx.session, on_request_completed_callback=on_request_completed) try: request = fx.create_order_request( order_type=fxcorepy.Constants.Orders.TRUE_MARKET_OPEN, ACCOUNT_ID=str_account, BUY_SELL=buy_sell, AMOUNT=amount, SYMBOL=offer.instrument) global order_request_id order_request_id = request.request_id fx.send_request_async(request, response_listener) except Exception as e: print("Failed") common_samples.print_exception(e) return except Exception as e: common_samples.print_exception(e) return
def main(): args = parse_args() user_id = args.l password = args.p str_url = args.u connection = args.c session_id = args.session pin = args.pin instrument = args.i str_account = args.account with ForexConnect() as fx: fx.login(user_id, password, str_url, connection, session_id, pin, common_samples.session_status_changed) account = Common.get_account(fx, str_account) if not account: raise Exception( "The account '{0}' is not valid".format(account)) else: str_account = account.account_id print("AccountID='{0}'".format(str_account)) offer = Common.get_offer(fx, instrument) if not offer: raise Exception( "The instrument '{0}' is not valid".format(instrument)) trade = Common.get_trade(fx, str_account, offer.offer_id) if not trade: raise Exception("There are no opened positions for instrument '{0}'".format(instrument)) amount = trade.amount buy = fxcorepy.Constants.BUY sell = fxcorepy.Constants.SELL buy_sell = sell if trade.buy_sell == buy else buy request = fx.create_order_request( order_type=fxcorepy.Constants.Orders.TRUE_MARKET_CLOSE, OFFER_ID=offer.offer_id, ACCOUNT_ID=str_account, BUY_SELL=buy_sell, AMOUNT=amount, TRADE_ID=trade.trade_id ) if request is None: raise Exception("Cannot create request") orders_monitor = OrdersMonitor() closed_trades_monitor = ClosedTradesMonitor() closed_trades_table = fx.get_table(ForexConnect.CLOSED_TRADES) orders_table = fx.get_table(ForexConnect.ORDERS) trades_listener = Common.subscribe_table_updates(closed_trades_table, on_add_callback=closed_trades_monitor.on_added_closed_trade) orders_listener = Common.subscribe_table_updates(orders_table, on_add_callback=orders_monitor.on_added_order, on_delete_callback=orders_monitor.on_deleted_order) try: resp = fx.send_request(request) order_id = resp.order_id except Exception as e: common_samples.print_exception(e) trades_listener.unsubscribe() orders_listener.unsubscribe() else: # Waiting for an order to appear/delete or timeout (default 30) is_success = orders_monitor.wait(30, order_id) closed_trade_row = None if is_success: # Waiting for a closed trade to appear or timeout (default 30) closed_trade_row = closed_trades_monitor.wait(30, order_id) if closed_trade_row is None: print("Response waiting timeout expired.\n") else: print("For the order: OrderID = {0} the following positions have been closed: ".format(order_id)) print("Closed Trade ID: {0:s}; Amount: {1:d}; Closed Rate: {2:.5f}".format(closed_trade_row.trade_id, closed_trade_row.amount, closed_trade_row.close_rate)) sleep(1) trades_listener.unsubscribe() orders_listener.unsubscribe() try: fx.logout() except Exception as e: common_samples.print_exception(e)
def main(): args = parse_args() user_id = args.l password = args.p str_url = args.u connection = args.c session_id = args.session pin = args.pin instrument = args.i buy_sell = args.d lots = args.lots openhour = args.openhour openminute = args.openminute str_account = args.account event = threading.Event() if not openhour: print("Open hour must be specified") return openhm = 60 * openhour + openminute with ForexConnect() as fx: fx.login(user_id, password, str_url, connection, session_id, pin, common_samples.session_status_changed) account = Common.get_account(fx, str_account) if not account: raise Exception("The account '{0}' is not valid".format(account)) else: str_account = account.account_id print("AccountID='{0}'".format(str_account)) offer = Common.get_offer(fx, instrument) if not offer: raise Exception( "The instrument '{0}' is not valid".format(instrument)) login_rules = fx.login_rules trading_settings_provider = login_rules.trading_settings_provider base_unit_size = trading_settings_provider.get_base_unit_size( instrument, account) amount = base_unit_size * lots market_open = fxcorepy.Constants.Orders.TRUE_MARKET_OPEN order_id = None curtime = datetime.now() hm = curtime.hour * 60 + curtime.minute print("Waiting...") while hm != openhm: curtime = datetime.now() hm = curtime.hour * 60 + curtime.minute time.sleep(1) request = fx.create_order_request(order_type=market_open, ACCOUNT_ID=str_account, BUY_SELL=buy_sell, AMOUNT=amount, SYMBOL=offer.instrument) if request is None: raise Exception("Cannot create request") def on_added_trade(_, __, trade_row): if trade_row.open_order_id == order_id: print("For the order: OrderID = {0} the following positions\ have been opened:".format(order_id)) print("Trade ID: {0:s}; Amount: {1:d}; Rate: {2:.5f}".format( trade_row.trade_id, trade_row.amount, trade_row.open_rate)) event.set() def on_added_order(_, __, order_row): nonlocal order_id if order_row.order_id == order_id: print("The order has been added. Order ID: {0:s},\ Rate: {1:.5f}, Time In Force: {2:s}".format( order_row.order_id, order_row.rate, order_row.time_in_force)) def on_deleted_order(_, __, row_data): nonlocal order_id if row_data.order_id == order_id: print("The order has been deleted. Order ID: {0}".format( row_data.order_id)) trades_table = fx.get_table(ForexConnect.TRADES) orders_table = fx.get_table(ForexConnect.ORDERS) trades_listener = Common.subscribe_table_updates( trades_table, on_add_callback=on_added_trade) orders_listener = Common.subscribe_table_updates( orders_table, on_add_callback=on_added_order, on_delete_callback=on_deleted_order) try: resp = fx.send_request(request) order_id = resp.order_id except Exception as e: common_samples.print_exception(e) trades_listener.unsubscribe() orders_listener.unsubscribe() else: # Waiting for an order to appear or timeout (default 30) if not event.wait(30): print("Response waiting timeout expired.\n") else: time.sleep(1) trades_listener.unsubscribe() orders_listener.unsubscribe() try: fx.logout() except Exception as e: common_samples.print_exception(e)
def main(): args = parse_args() user_id = args.l password = args.p str_url = args.u connection = args.c session_id = args.session pin = args.pin instrument = args.i buy_sell = args.d lots = args.lots str_account = args.account with ForexConnect() as fx: fx.login(user_id, password, str_url, connection, session_id, pin, common_samples.session_status_changed) account = Common.get_account(fx, str_account) if not account: raise Exception("The account '{0}' is not valid".format(account)) else: str_account = account.account_id print("AccountID='{0}'".format(str_account)) offer = Common.get_offer(fx, instrument) if not offer: raise Exception( "The instrument '{0}' is not valid".format(instrument)) login_rules = fx.login_rules trading_settings_provider = login_rules.trading_settings_provider base_unit_size = trading_settings_provider.get_base_unit_size( instrument, account) amount = base_unit_size * lots market_open = fxcorepy.Constants.Orders.TRUE_MARKET_OPEN request = fx.create_order_request(order_type=market_open, ACCOUNT_ID=str_account, BUY_SELL=buy_sell, AMOUNT=amount, SYMBOL=offer.instrument) if request is None: raise Exception("Cannot create request") orders_monitor = OrdersMonitor() trades_monitor = TradesMonitor() trades_table = fx.get_table(ForexConnect.TRADES) orders_table = fx.get_table(ForexConnect.ORDERS) trades_listener = Common.subscribe_table_updates( trades_table, on_add_callback=trades_monitor.on_added_trade) orders_listener = Common.subscribe_table_updates( orders_table, on_add_callback=orders_monitor.on_added_order, on_delete_callback=orders_monitor.on_deleted_order, on_change_callback=orders_monitor.on_changed_order) try: resp = fx.send_request(request) order_id = resp.order_id except Exception as e: common_samples.print_exception(e) trades_listener.unsubscribe() orders_listener.unsubscribe() else: # Waiting for an order to appear/delete or timeout (default 30) is_success = orders_monitor.wait(30, order_id) trade_row = None if is_success: # Waiting for an trade to appear or timeout (default 30) trade_row = trades_monitor.wait(30, order_id) if trade_row is None: print("Response waiting timeout expired.\n") else: print( "For the order: OrderID = {0} the following positions have been opened:" .format(order_id)) print("Trade ID: {0:s}; Amount: {1:d}; Rate: {2:.5f}".format( trade_row.trade_id, trade_row.amount, trade_row.open_rate)) sleep(1) trades_listener.unsubscribe() orders_listener.unsubscribe() try: fx.logout() except Exception as e: common_samples.print_exception(e)
def main(): args = parse_args() str_user_id = args.l str_password = args.p str_url = args.u str_connection = args.c str_session_id = args.session str_pin = args.pin str_instrument = args.i str_buy_sell = args.d str_rate = args.r str_lots = args.lots str_account = args.account with ForexConnect() as fx: fx.login(str_user_id, str_password, str_url, str_connection, str_session_id, str_pin, common_samples.session_status_changed) try: account = Common.get_account(fx, str_account) if not account: raise Exception( "The account '{0}' is not valid".format(str_account)) else: str_account = account.account_id print("AccountID='{0}'".format(str_account)) offer = Common.get_offer(fx, str_instrument) if offer is None: raise Exception( "The instrument '{0}' is not valid".format(str_instrument)) login_rules = fx.login_rules trading_settings_provider = login_rules.trading_settings_provider base_unit_size = trading_settings_provider.get_base_unit_size( str_instrument, account) amount = base_unit_size * str_lots entry = fxcorepy.Constants.Orders.ENTRY request = fx.create_order_request( order_type=entry, OFFER_ID=offer.offer_id, ACCOUNT_ID=str_account, BUY_SELL=str_buy_sell, AMOUNT=amount, RATE=str_rate, ) orders_monitor = OrdersMonitor() orders_table = fx.get_table(ForexConnect.ORDERS) orders_listener = Common.subscribe_table_updates( orders_table, on_add_callback=orders_monitor.on_added_order) try: resp = fx.send_request(request) order_id = resp.order_id except Exception as e: common_samples.print_exception(e) orders_listener.unsubscribe() else: # Waiting for an order to appear or timeout (default 30) order_row = orders_monitor.wait(30, order_id) if order_row is None: print("Response waiting timeout expired.\n") else: print( "The order has been added. OrderID={0:s}, " "Type={1:s}, BuySell={2:s}, Rate={3:.5f}, TimeInForce={4:s}" .format(order_row.order_id, order_row.type, order_row.buy_sell, order_row.rate, order_row.time_in_force)) sleep(1) orders_listener.unsubscribe() except Exception as e: common_samples.print_exception(e) try: fx.logout() except Exception as e: common_samples.print_exception(e)