generated from LengKundee/UA6-9V_VL6-N9
firebase-adminsdk-fbsvc@xenon-respect-485202-t0.iam.gserviceaccount.com
https://studio.firebase.google.com/studio-6309792933
|
|
||
|---|---|---|
| .github/workflows | ||
| .jules | ||
| Expert/Test/DateTimeMsc | ||
| Experts | ||
| Files | ||
| guidebook | ||
| I'm Good | ||
| Images | ||
| Include | ||
| Indicators | ||
| Logs/Indicators | ||
| MQL5_Deployment_Package/Experts | ||
| Profiles | ||
| Scripts | ||
| .gitignore | ||
| auto-setup-helper.ps1 | ||
| check-oauth-setup.ps1 | ||
| cleanup.ps1 | ||
| common_utils.py | ||
| dropbox_to_onedrive.py | ||
| firebase-config.example.js | ||
| firebase-config.example.json | ||
| firebase_utils.py | ||
| gdrive_cleanup.py | ||
| LICENSE | ||
| open-oauth-pages.ps1 | ||
| README.md | ||
| requirements.txt | ||
| setup-google-oauth.ps1 | ||
| setup-onedrive-oauth.ps1 | ||
| setup.bat | ||
| setup.ps1 | ||
| setup.sh | ||
| test-google-drive.ps1 | ||
| test-onedrive.ps1 | ||
| test_common_utils.py | ||
| test_gdrive_models.py | ||
| test_trading_data_manager.py | ||
| trading_data_config.example.json | ||
| trading_data_manager.py | ||
MQL5 Trading Robots
git clone https://github.com/A6-9V/NUNA.git
This repository contains a collection of MQL5 trading robots (Expert Advisors).
Robots
- DarkCloud PiercingLine CCI: This robot uses the Dark Cloud Cover and Piercing Line candlestick patterns in conjunction with the Commodity Channel Index (CCI) to identify trading opportunities.
- HangingMan Hammer CCI: This robot uses the Hanging Man and Hammer candlestick patterns in conjunction with the Commodity Channel Index (CCI) to identify trading opportunities.
- DarkCloud PiercingLine RSI: This robot uses the Dark Cloud Cover and Piercing Line candlestick patterns in conjunction with the Relative Strength Index (RSI) to identify trading opportunities.
Common Parameters
All robots share a common set of input parameters for configuration.
Indicator Parameters
InpAverBodyPeriod: Period for calculating the average candlestick size (default: 12).InpMAPeriod: Trend MA period (default: 5).InpPrice: Price type to use for calculations (default:PRICE_CLOSE).
Specific Indicator Parameters
InpPeriodCCI(for CCI-based robots): CCI period (default: 37).InpPeriodRSI(for RSI-based robots): RSI period (default: 37).
Trade Parameters
InpDuration: Position holding time in bars (default: 10).InpSL: Stop Loss in points (default: 200).InpTP: Take Profit in points (default: 200).InpSlippage: Slippage in points (default: 10).
Money Management
InpLot: Lot size for trades (default: 0.1).
Expert ID
InpMagicNumber: A unique number to identify trades opened by a specific EA.DarkCloud PiercingLine CCI: 120500HangingMan Hammer CCI: 124100DarkCloud PiercingLine RSI: 120700