python-trading-robot icon indicating copy to clipboard operation
python-trading-robot copied to clipboard

A trading robot, that can submit basic orders in an automated fashion using the TD API.

Results 21 python-trading-robot issues
Sort by recently updated
recently updated
newest added

This seems to be a great resource but I can't get over a hurdle I'm encountering. I'm getting data using TDA's REST API through trading_robot.grab_historical_prices() This pulls out the latest...

Hers is list of stock symbols if anyone needs it. This is every stock which is available in stock market. Also, I have one file which is filtered based on...

https://github.com/areed1192/python-trading-robot/blob/c0536b452b463404febea3de4675bcb2cea6b478/pyrobot/robot.py#L464 ```python bar_type {str} -- Defines the bar type, can be one of the following: `['minute', 'week', 'month', 'year']` (default: {'minute'}) ``` This is a little misleading, if I follow...

Thanks for this project Alex! Awesome stuff. Working on building a robot for tracking trades vs indicator readings and I noticed something looked funny with the bollinger_band indicator. Don't have...

First off - this work is a HUGE help!!! I have been learning out to trade and code at the same time. Your work and videos are very helpful. This...

Checks if asset already in portfolio in the add_position() method.

is the minimum requirement truly 3.8? I switched it to 3.7.7 and it seems to function.

I can't seem to post a trade to my real account. Most of the code below is from the trading_robot.py sample. Is this not the way to execute an order?...

I must not read instructions well. How does this post to my real account. I got robot get_account to work. Still not sure how to place trades for real.

Traceback (most recent call last): File "e:\python-trading-robot\samples\trading_robot.py", line 222, in trading_robot.execute_signals( File "e:\python-trading-robot\pyrobot\robot.py", line 721, in execute_signals trade_obj: Trade = trades_to_execute[symbol]['buy']['trade_func'] KeyError: 'buy'