You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Set default OpenAI models if not already set to OpenAI models
222
+
if analyzer.config["agent_llm_model"].startswith(("claude", "qwen")):
223
+
analyzer.config["agent_llm_model"] ="gpt-4o-mini"
224
+
if analyzer.config["graph_llm_model"].startswith(("claude", "qwen")):
225
+
analyzer.config["graph_llm_model"] ="gpt-4o"
226
+
212
227
```
213
228
214
229
For live data, we recommend using the web interface as it provides access to real-time market data through yfinance. The system automatically fetches the most recent 30 candlesticks for optimal LLM analysis accuracy.
@@ -251,8 +266,16 @@ This project is licensed under the MIT License - see the LICENSE file for detail
251
266
252
267
## 🙏 Acknowledgements
253
268
254
-
This repository was built off of [**LangGraph**](https://github.com/langchain-ai/langgraph), [**OpenAI**](https://github.com/openai/openai-python), [**yfinance**](https://github.com/ranaroussi/yfinance), [**Flask**](https://github.com/pallets/flask), [**TechnicalAnalysisAutomation**](https://github.com/neurotrader888/TechnicalAnalysisAutomation/tree/main) and [**tvdatafeed**](https://github.com/rongardF/tvdatafeed).
269
+
This repository was built with the help of the following libraries and frameworks:
This software is for educational and research purposes only. It is not intended to provide financial advice. Always do your own research and consider consulting with a financial advisor before making investment decisions.
@@ -263,7 +286,7 @@ This software is for educational and research purposes only. It is not intended
263
286
264
287
1.**TA-Lib Installation**: If you encounter TA-Lib installation issues, refer to the [official repository](https://github.com/ta-lib/ta-lib-python) for platform-specific instructions.
265
288
266
-
2.**OpenAI API Key**: Ensure your API key is properly set in the environment or through the web interface.
289
+
2.**LLM API Key**: Ensure your API key is properly set in the environment or through the web interface.
267
290
268
291
3.**Data Fetching**: The system uses Yahoo Finance for data. Some symbols might not be available or have limited historical data.
269
292
@@ -272,10 +295,12 @@ This software is for educational and research purposes only. It is not intended
272
295
### Support
273
296
274
297
If you encounter any issues, please:
298
+
299
+
0. Try refresh and re-enter LLM API key
275
300
1. Check the troubleshooting section above
276
301
2. Review the error messages in the console
277
302
3. Ensure all dependencies are properly installed
278
-
4. Verify your OpenAI API key is valid and has sufficient credits
303
+
4. Verify your API key is valid and has sufficient credits
0 commit comments