NextGen-Trader
No description available.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
