Mtemi / Bybit-Trading-Bot-Integrated-with-TradingView-Webhook-Alerts

Python based Trading Bot that uses TradingView.com webhook JSON alerts to place orders(buy/sell/close/manage positions/TP/SL/TS etc.) on Bybit.com.
https://crypttops.com
384 stars 107 forks source link

When running webhook-bot.py #1

Closed Dewaldhamman closed 4 years ago

Dewaldhamman commented 4 years ago

File "C:\Users\dewald\Desktop\Bybit-Auto-Trading-Bot-Ordes-placed-via-TradingView-Webhook-master\webhook-bot.py", line 9, in from actions import send_order, parse_webhook, parse__price_webhook File "C:\Users\dewald\Desktop\Bybit-Auto-Trading-Bot-Ordes-placed-via-TradingView-Webhook-master\actions.py", line 3, in from pybybit import Bybit File "C:\Users\dewald\Desktop\Bybit-Auto-Trading-Bot-Ordes-placed-via-TradingView-Webhook-master\pybybit.py", line 12, in import pandas as pd ModuleNotFoundError: No module named 'pandas'

Mtemi commented 4 years ago

if you miss and python module like in this case just, "pip install module_name" so to solve the above problem just, "pip install pandas" or if python3 not configured to use pip then use "pip3 install pandas".