Compare commits

..

No commits in common. "622c03138bc602b6834aaba64f3061d478c91333" and "310d5c4fa48aaa215c33642165fe8745e28c138b" have entirely different histories.

6 changed files with 13 additions and 83 deletions

View File

@ -1,5 +1,5 @@
# Virtualenv # Virtualenv
# https://realpython.com/python-virtual-environments-a-primer/#the-virtualenv-project # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
.Python .Python
[Bb]in [Bb]in
[Ii]nclude [Ii]nclude

View File

@ -194,6 +194,13 @@ cython_debug/
# PyPI configuration file # PyPI configuration file
.pypirc .pypirc
# Cursor
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
# refer to https://docs.cursor.com/context/ignore-files
.cursorignore
.cursorindexingignore
# Marimo # Marimo
marimo/_static/ marimo/_static/
marimo/_lsp/ marimo/_lsp/

View File

@ -35,10 +35,3 @@ override.tf.json
# Ignore CLI configuration files # Ignore CLI configuration files
.terraformrc .terraformrc
terraform.rc terraform.rc
# Optional: ignore graph output files generated by `terraform graph`
# *.dot
# Optional: ignore plan files saved before destroying Terraform configuration
# Uncomment the line below if you want to ignore planout files.
# planout

View File

@ -31,8 +31,6 @@ LineIDs.dbg.bak
*.xtv *.xtv
*.xtv.bak *.xtv.bak
*.xtv.bk? *.xtv.bk?
*.xt?.bk?
*.xt?.orig
# Multiuser specific # Multiuser specific
**/.TcGit/ **/.TcGit/
@ -45,7 +43,6 @@ LineIDs.dbg.bak
**/_Deployment/ **/_Deployment/
**/_Repository/ **/_Repository/
# To include a specific library directory (i.e. third party/custom libs), # To include a specific library directory (i.e. third party/custom libs),
# use pattern `!/**/_Libraries/<directory name>/` i.e. `!/**/_Libraries/www.tcunit.org/` # use pattern `!/**/_Libraries/<directory name>/` i.e. `!/**/_Libraries/www.tcunit.org/`
# #

View File

@ -22,21 +22,8 @@ mono_crash.*
[Dd]ebugPublic/ [Dd]ebugPublic/
[Rr]elease/ [Rr]elease/
[Rr]eleases/ [Rr]eleases/
x64/
[Dd]ebug/x64/ x86/
[Dd]ebugPublic/x64/
[Rr]elease/x64/
[Rr]eleases/x64/
bin/x64/
obj/x64/
[Dd]ebug/x86/
[Dd]ebugPublic/x86/
[Rr]elease/x86/
[Rr]eleases/x86/
bin/x86/
obj/x86/
[Ww][Ii][Nn]32/ [Ww][Ii][Nn]32/
[Aa][Rr][Mm]/ [Aa][Rr][Mm]/
[Aa][Rr][Mm]64/ [Aa][Rr][Mm]64/
@ -323,6 +310,9 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw *.vbw
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
*.vbp
# Visual Studio 6 workspace and project file (working project files containing files to include in project) # Visual Studio 6 workspace and project file (working project files containing files to include in project)
*.dsw *.dsw
*.dsp *.dsp

View File

@ -1,57 +0,0 @@
# MetaTrader 5 and MQL5 gitignore template
# Project homepage: https://www.metatrader5.com/en
# Compiled MQL5 executables (binaries)
# These are generated from .mq5 source files and should not be committed.
*.ex5
*.ex4 # For MQL4 compatibility if you also manage MT4 projects in a similar structure
# Log files
# Terminal logs, strategy tester logs, and custom logs from Print() functions.
*.log
*.slog # Strategy Tester logs
# Strategy Tester specific files
# History data, optimization results, and temporary files used by the tester.
*.fxt # FXT files (history data for testing)
*.hst # History data files (can be large)
*.ini # Initialization files (often generated by tester or EAs)
*.dat # Data files (various purposes, often temporary)
*.csv # CSV export files (e.g., from tester reports)
*.jrn # Journal files (tester journal)
# Market Watch sets and profiles
# User-specific lists of symbols in Market Watch, and terminal profiles.
*.set # Market Watch symbol sets
*.tpl # Chart templates
*.chr # Chart settings files (can be generated when saving templates or profiles)
# External libraries (DLLs)
# If you use custom DLLs, you might want to ignore them if they are built separately
# and not part of your MQL5 source code repository.
*.dll
# User-specific configuration and credentials
# Files containing sensitive information or local user settings.
.env # Environment variables (e.g., for Python integration credentials)
*.cfg # Configuration files (if not meant to be shared)
*.json # Be careful: if you have config JSONs you *do* want to commit, add specific exceptions.
# Example: !config.json (to include config.json but ignore other *.json)
# Temporary files and backup files generated by MetaEditor
*.~* # Temporary files (e.g., ~MyScript.mq5)
*.bak # Backup files (e.g., MyScript.mq5.bak)
*.mqh.bak
*.mq5.bak
# MetaEditor project files
# Project files for MetaEditor workspaces.
.mqproj
# Python specific ignores (if you also keep Python scripts or Jupyter notebooks in this repository)
# These are relevant if your Git repo root is higher up (e.g., the terminal folder itself)
# or if you mix Python code within your MQL5 structure.
__pycache__/ # Python compiled bytecode cache
.ipynb_checkpoints/ # Jupyter Notebook checkpoints
*.pyc # Python compiled files
*.pyd # Python dynamic modules