NextGen-Trader
No description available.
File Explorer
- settings.local.json
- settings.json
- main.cpython-310.pyc
- main.cpython-313.pyc
- aswath_damodaran.cpython-310.pyc
- aswath_damodaran.cpython-313.pyc
- ben_graham.cpython-310.pyc
- ben_graham.cpython-313.pyc
- bill_ackman.cpython-310.pyc
- bill_ackman.cpython-313.pyc
- cathie_wood.cpython-310.pyc
- cathie_wood.cpython-313.pyc
- charlie_munger.cpython-310.pyc
- charlie_munger.cpython-313.pyc
- fundamentals.cpython-310.pyc
- fundamentals.cpython-313.pyc
- phil_fisher.cpython-310.pyc
- phil_fisher.cpython-313.pyc
- portfolio_manager.cpython-310.pyc
- portfolio_manager.cpython-313.pyc
- rakesh_jhunjhunwala.cpython-310.pyc
- rakesh_jhunjhunwala.cpython-313.pyc
- risk_manager.cpython-310.pyc
- risk_manager.cpython-313.pyc
- sentiment.cpython-310.pyc
- sentiment.cpython-313.pyc
- stanley_druckenmiller.cpython-310.pyc
- stanley_druckenmiller.cpython-313.pyc
- technicals.cpython-310.pyc
- technicals.cpython-313.pyc
- valuation.cpython-310.pyc
- valuation.cpython-313.pyc
- warren_buffett.cpython-310.pyc
- warren_buffett.cpython-313.pyc
- aswath_damodaran.py
- ben_graham.py
- bill_ackman.py
- cathie_wood.py
- charlie_munger.py
- fundamentals.py
- neural_sentiment_predictor.py
- phil_fisher.py
- portfolio_manager.py
- quantum_market_dynamics.py
- rakesh_jhunjhunwala.py
- risk_manager.py
- sentiment.py
- stanley_druckenmiller.py
- technicals.py
- valuation.py
- warren_buffett.py
- __init__.py
- agents.py
- backtesting.py
- beast_agents.py
- data.py
- models.py
- portfolio.py
- workflow.py
- __init__.py
- schemas.py
- cache.cpython-310.pyc
- cache.cpython-313.pyc
- models.cpython-310.pyc
- models.cpython-313.pyc
- cache.py
- models.py
- state.cpython-310.pyc
- state.cpython-313.pyc
- state.py
- models.cpython-310.pyc
- models.cpython-313.pyc
- api_models.json
- models.py
- ollama_models.json
- api.cpython-310.pyc
- api.cpython-313.pyc
- api.py
- __init__.cpython-310.pyc
- __init__.cpython-313.pyc
- analysts.cpython-310.pyc
- analysts.cpython-313.pyc
- display.cpython-310.pyc
- display.cpython-313.pyc
- llm.cpython-310.pyc
- llm.cpython-313.pyc
- ollama.cpython-313.pyc
- progress.cpython-310.pyc
- progress.cpython-313.pyc
- visualize.cpython-310.pyc
- visualize.cpython-313.pyc
- __init__.py
- analysts.py
- display.py
- llm.py
- ollama.py
- progress.py
- visualize.py
- agent_graph.png
- analyst_workflow_graph.png
- api_server.log
- api_server.py
- backtester.py
- Image.png
- maain.py
- requirements.txt
- .gitignore
- agent_graph.png
- README.md
- requirements.txt
- test.py
- test_report_20250830_232849.json
- ultimate_test.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
